comparison truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/script/TruffleScriptEngineFactory.java @ 22079:14ee5048c76e

Deprecating TruffleScriptEngineFactory the Debugger is now essential part of TruffleVM and this is no longer needed.
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Thu, 13 Aug 2015 16:59:39 +0200
parents 9c8c0937da41
children dc83cc1f94f2
comparison
equal deleted inserted replaced
22078:8f767a7b9c0f 22079:14ee5048c76e
24 */ 24 */
25 package com.oracle.truffle.api.script; 25 package com.oracle.truffle.api.script;
26 26
27 import javax.script.*; 27 import javax.script.*;
28 28
29 @Deprecated
29 /** 30 /**
30 * Tool access to the creation of Truffle execution engines. 31 * Tool access to the creation of Truffle execution engines.
32 * @deprecated no longer needed and will be removed
31 */ 33 */
32 public abstract class TruffleScriptEngineFactory implements ScriptEngineFactory { 34 public abstract class TruffleScriptEngineFactory implements ScriptEngineFactory {
33 35
34 // TODO (mlvdv) first step, based on a suggestion from NetBeans 36 // TODO (mlvdv) first step, based on a suggestion from NetBeans
35 /** 37 /**