亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? context.java

?? 主要的怎么樣結合java 和 javascript!
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
     */    public ScriptableObject initStandardObjects(ScriptableObject scope,                                                boolean sealed)    {        return ScriptRuntime.initStandardObjects(this, scope, sealed);    }    /**     * Get the singleton object that represents the JavaScript Undefined value.     */    public static Object getUndefinedValue()    {        return Undefined.instance;    }    /**     * Evaluate a JavaScript source string.     *     * The provided source name and line number are used for error messages     * and for producing debug information.     *     * @param scope the scope to execute in     * @param source the JavaScript source     * @param sourceName a string describing the source, such as a filename     * @param lineno the starting line number     * @param securityDomain an arbitrary object that specifies security     *        information about the origin or owner of the script. For     *        implementations that don't care about security, this value     *        may be null.     * @return the result of evaluating the string     * @see org.mozilla.javascript.SecurityController     */    public final Object evaluateString(Scriptable scope, String source,                                       String sourceName, int lineno,                                       Object securityDomain)    {        Script script = compileString(source, sourceName, lineno,                                      securityDomain);        if (script != null) {            return script.exec(this, scope);        } else {            return null;        }    }    /**     * Evaluate a reader as JavaScript source.     *     * All characters of the reader are consumed.     *     * @param scope the scope to execute in     * @param in the Reader to get JavaScript source from     * @param sourceName a string describing the source, such as a filename     * @param lineno the starting line number     * @param securityDomain an arbitrary object that specifies security     *        information about the origin or owner of the script. For     *        implementations that don't care about security, this value     *        may be null.     * @return the result of evaluating the source     *     * @exception IOException if an IOException was generated by the Reader     */    public final Object evaluateReader(Scriptable scope, Reader in,                                       String sourceName, int lineno,                                       Object securityDomain)        throws IOException    {        Script script = compileReader(scope, in, sourceName, lineno,                                      securityDomain);        if (script != null) {            return script.exec(this, scope);        } else {            return null;        }    }    /**     * Check whether a string is ready to be compiled.     * <p>     * stringIsCompilableUnit is intended to support interactive compilation of     * javascript.  If compiling the string would result in an error     * that might be fixed by appending more source, this method     * returns false.  In every other case, it returns true.     * <p>     * Interactive shells may accumulate source lines, using this     * method after each new line is appended to check whether the     * statement being entered is complete.     *     * @param source the source buffer to check     * @return whether the source is ready for compilation     * @since 1.4 Release 2     */    public final boolean stringIsCompilableUnit(String source)    {        boolean errorseen = false;        CompilerEnvirons compilerEnv = new CompilerEnvirons();        compilerEnv.initFromContext(this);        // no source name or source text manager, because we're just        // going to throw away the result.        compilerEnv.setGeneratingSource(false);        Parser p = new Parser(compilerEnv, DefaultErrorReporter.instance);        try {            p.parse(source, null, 1);        } catch (EvaluatorException ee) {            errorseen = true;        }        // Return false only if an error occurred as a result of reading past        // the end of the file, i.e. if the source could be fixed by        // appending more source.        if (errorseen && p.eof())            return false;        else            return true;    }    /**     * @deprecated     * @see #compileReader(Reader in, String sourceName, int lineno,     *                     Object securityDomain)     */    public final Script compileReader(Scriptable scope, Reader in,                                      String sourceName, int lineno,                                      Object securityDomain)        throws IOException    {        return compileReader(in, sourceName, lineno, securityDomain);    }    /**     * Compiles the source in the given reader.     * <p>     * Returns a script that may later be executed.     * Will consume all the source in the reader.     *     * @param in the input reader     * @param sourceName a string describing the source, such as a filename     * @param lineno the starting line number for reporting errors     * @param securityDomain an arbitrary object that specifies security     *        information about the origin or owner of the script. For     *        implementations that don't care about security, this value     *        may be null.     * @return a script that may later be executed     * @exception IOException if an IOException was generated by the Reader     * @see org.mozilla.javascript.Script     */    public final Script compileReader(Reader in, String sourceName,                                      int lineno, Object securityDomain)        throws IOException    {        if (lineno < 0) {            // For compatibility IllegalArgumentException can not be thrown here            lineno = 0;        }        return (Script) compileImpl(null, in, null, sourceName, lineno,                                    securityDomain, false, null, null);    }    /**     * Compiles the source in the given string.     * <p>     * Returns a script that may later be executed.     *     * @param source the source string     * @param sourceName a string describing the source, such as a filename     * @param lineno the starting line number for reporting errors     * @param securityDomain an arbitrary object that specifies security     *        information about the origin or owner of the script. For     *        implementations that don't care about security, this value     *        may be null.     * @return a script that may later be executed     * @see org.mozilla.javascript.Script     */    public final Script compileString(String source,                                      String sourceName, int lineno,                                      Object securityDomain)    {        if (lineno < 0) {            // For compatibility IllegalArgumentException can not be thrown here            lineno = 0;        }        return compileString(source, null, null, sourceName, lineno,                             securityDomain);    }    final Script compileString(String source,                               Interpreter compiler,                               ErrorReporter compilationErrorReporter,                               String sourceName, int lineno,                               Object securityDomain)    {        try {            return (Script) compileImpl(null, null, source, sourceName, lineno,                                        securityDomain, false,                                        compiler, compilationErrorReporter);        } catch (IOException ex) {            // Should not happen when dealing with source as string            throw new RuntimeException();        }    }    /**     * Compile a JavaScript function.     * <p>     * The function source must be a function definition as defined by     * ECMA (e.g., "function f(a) { return a; }").     *     * @param scope the scope to compile relative to     * @param source the function definition source     * @param sourceName a string describing the source, such as a filename     * @param lineno the starting line number     * @param securityDomain an arbitrary object that specifies security     *        information about the origin or owner of the script. For     *        implementations that don't care about security, this value     *        may be null.     * @return a Function that may later be called     * @see org.mozilla.javascript.Function     */    public final Function compileFunction(Scriptable scope, String source,                                          String sourceName, int lineno,                                          Object securityDomain)    {        return compileFunction(scope, source, null, null, sourceName, lineno,                               securityDomain);    }    final Function compileFunction(Scriptable scope, String source,                                   Interpreter compiler,                                   ErrorReporter compilationErrorReporter,                                   String sourceName, int lineno,                                   Object securityDomain)    {        try {            return (Function) compileImpl(scope, null, source, sourceName,                                          lineno, securityDomain, true,                                          compiler, compilationErrorReporter);        }        catch (IOException ioe) {            // Should never happen because we just made the reader            // from a String            throw new RuntimeException();        }    }    /**     * Decompile the script.     * <p>     * The canonical source of the script is returned.     *     * @param script the script to decompile     * @param indent the number of spaces to indent the result     * @return a string representing the script source     */    public final String decompileScript(Script script, int indent)    {        NativeFunction scriptImpl = (NativeFunction) script;        return scriptImpl.decompile(indent, 0);    }    /**     * Decompile a JavaScript Function.     * <p>     * Decompiles a previously compiled JavaScript function object to     * canonical source.     * <p>     * Returns function body of '[native code]' if no decompilation     * information is available.     *     * @param fun the JavaScript function to decompile     * @param indent the number of spaces to indent the result     * @return a string representing the function source     */    public final String decompileFunction(Function fun, int indent)    {        if (fun instanceof BaseFunction)            return ((BaseFunction)fun).decompile(indent, 0);        else            return "function " + fun.getClassName() +                   "() {\n\t[native code]\n}\n";    }    /**     * Decompile the body of a JavaScript Function.     * <p>     * Decompiles the body a previously compiled JavaScript Function     * object to canonical source, omitting the function header and     * trailing brace.     *     * Returns '[native code]' if no decompilation information is available.     *     * @param fun the JavaScript function to decompile     * @param indent the number of spaces to indent the result     * @return a string representing the function body source.     */    public final String decompileFunctionBody(Function fun, int indent)    {        if (fun instanceof BaseFunction) {            BaseFunction bf = (BaseFunction)fun;            return bf.decompile(indent, Decompiler.ONLY_BODY_FLAG);        }        // ALERT: not sure what the right response here is.        return "[native code]\n";    }    /**     * Create a new JavaScript object.     *     * Equivalent to evaluating "new Object()".     * @param scope the scope to search for the constructor and to evaluate     *              against     * @return the new object     */    public final Scriptable newObject(Scriptable scope)    {        return newObject(scope, "Object", ScriptRuntime.emptyArgs);    }    /**     * Create a new JavaScript object by executing the named constructor.     *     * The call <code>newObject(scope, "Foo")</code> is equivalent to     * evaluating "new Foo()".     *     * @param scope the scope to search for the constructor and to evaluate against     * @param constructorName the name of the constructor to call     * @return the new object     */    public final Scriptable newObject(Scriptable scope, String constructorName)    {        return newObject(scope, constructorName, ScriptRuntime.emptyArgs);    }    /**     * Creates a new JavaScript object by executing the named constructor.     *     * Searches <code>scope</code> for the named constructor, calls it with     * the given arguments, and returns the result.<p>     *     * The code     * <pre>     * Object[] args = { "a", "b" };     * newObject(scope, "Foo", args)</pre>     * is equivalent to evaluating "new Foo('a', 'b')", assuming that the Foo     * constructor has been defined in <code>scope</code>.     *     * @param scope The scope to search for the constructor and to evaluate     *              against     * @param constructorName the name of the constructor to call     * @param args the array of arguments for the constructor     * @return the new object     */    public final Scriptable newObject(Scriptable scope, String constructorName,                                      Object[] args)    {        scope = ScriptableObject.getTopLevelScope(scope);        Function ctor = ScriptRuntime.getExistingCtor(this, scope,                                                      constructorName);        if (args == null) { args = ScriptRuntime.emptyArgs; }        return ctor.construct(this, scope, args);    }    /**     * Create an array with a specified initial length.     * <p>     * @param scope the scope to create the object in

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美国产综合| 成人国产一区二区三区精品| 欧美日韩高清影院| 亚洲高清免费观看| 欧美日韩免费视频| 日韩av电影免费观看高清完整版在线观看 | 91久久精品午夜一区二区| 亚洲女与黑人做爰| 欧美性色欧美a在线播放| 午夜成人免费电影| 精品久久久久久综合日本欧美| 国模冰冰炮一区二区| 国产女人水真多18毛片18精品视频| 成人精品免费视频| 亚洲大型综合色站| 日韩亚洲欧美综合| av在线这里只有精品| 亚洲综合一区二区精品导航| 欧美一级搡bbbb搡bbbb| 成人精品国产福利| 一区二区三区中文字幕电影| 欧美精品乱码久久久久久按摩| 蜜桃视频一区二区| 国产精品福利在线播放| 欧美视频一区在线观看| 精品一区二区三区的国产在线播放| 久久久久久久久岛国免费| 97久久久精品综合88久久| 日韩电影免费在线观看网站| 国产欧美一二三区| 欧美日韩高清影院| av中文字幕亚洲| 日韩影院精彩在线| 亚洲人被黑人高潮完整版| 欧美xingq一区二区| 91年精品国产| 国产传媒一区在线| 午夜激情一区二区| 综合亚洲深深色噜噜狠狠网站| 91精品综合久久久久久| 99精品视频在线观看免费| 青青草国产成人av片免费| 亚洲欧美偷拍三级| 国产色产综合产在线视频| 在线不卡中文字幕| 91在线免费播放| 国产精品亚洲一区二区三区妖精 | 欧美日韩国产一级片| 国产精品1区2区3区| 青青青爽久久午夜综合久久午夜| 亚洲人精品午夜| 久久综合色一综合色88| 777xxx欧美| 欧洲一区在线观看| 不卡免费追剧大全电视剧网站| 精品亚洲国产成人av制服丝袜| 亚洲网友自拍偷拍| 亚洲欧美激情视频在线观看一区二区三区 | 日韩精品综合一本久道在线视频| 91麻豆成人久久精品二区三区| 国产福利精品一区| 国产专区欧美精品| 久久99久久99小草精品免视看| 亚洲成人精品在线观看| 亚洲欧美另类综合偷拍| 亚洲丝袜美腿综合| 国产精品久久久久久久久快鸭| 久久尤物电影视频在线观看| 欧美大片一区二区三区| 日韩一区二区三区av| 欧美一区二区在线看| 欧美日韩国产一二三| 亚洲国产精品99久久久久久久久| 高清免费成人av| 日韩欧美高清在线| 欧美图片一区二区三区| 色94色欧美sute亚洲线路一ni| jlzzjlzz国产精品久久| 99re视频这里只有精品| 成人在线综合网| www.亚洲精品| fc2成人免费人成在线观看播放| 国产a精品视频| eeuss影院一区二区三区| 99在线热播精品免费| av一二三不卡影片| 在线观看欧美精品| 欧美精品1区2区| 精品理论电影在线| 国产亚洲精品aa午夜观看| 国产日韩欧美a| 亚洲同性gay激情无套| 亚洲美女淫视频| 日韩国产欧美在线视频| 另类中文字幕网| 国产精品18久久久久| 99re热视频这里只精品| 久久99精品一区二区三区三区| 成人一区二区三区| 风间由美一区二区av101 | 91成人免费在线| 在线视频国产一区| 久久久蜜桃精品| 久久欧美中文字幕| 北条麻妃一区二区三区| 午夜精品一区二区三区免费视频 | 亚洲欧美中日韩| 一级中文字幕一区二区| 免费看欧美女人艹b| 国产精品一卡二卡| 91蜜桃在线免费视频| 9191成人精品久久| 国产片一区二区| 一区二区三区欧美视频| 亚洲国产欧美另类丝袜| 国产专区欧美精品| 国产激情视频一区二区三区欧美| 国产成+人+日韩+欧美+亚洲| 在线精品视频小说1| 欧美成人性福生活免费看| 中文成人av在线| 亚洲福中文字幕伊人影院| 国产激情视频一区二区在线观看| 在线观看一区二区视频| 久久综合色婷婷| 亚洲一区成人在线| 国产毛片精品视频| 欧美在线影院一区二区| 久久久噜噜噜久噜久久综合| 亚洲在线视频网站| 国产成人在线电影| 欧美一级片在线| 亚洲视频一区二区在线观看| 久久精品72免费观看| 欧美在线一二三| 国产精品色噜噜| 麻豆精品视频在线观看| 一本到不卡精品视频在线观看| 久久网站最新地址| 蜜臀av性久久久久蜜臀aⅴ| 91久久线看在观草草青青| 国产调教视频一区| 久99久精品视频免费观看| 欧美性xxxxx极品少妇| 成人免费一区二区三区在线观看| 国产在线乱码一区二区三区| 欧洲另类一二三四区| 亚洲天堂精品在线观看| 国产成人a级片| 337p日本欧洲亚洲大胆精品 | 国产精品另类一区| 国产精品亚洲第一| 日本大香伊一区二区三区| 久久久91精品国产一区二区精品| 国产精品视频看| 精品一区二区在线播放| 4438x成人网最大色成网站| 亚洲色大成网站www久久九九| 国产91精品一区二区| 久久色在线视频| 久久国产夜色精品鲁鲁99| 不卡欧美aaaaa| 成人黄页毛片网站| 亚洲国产精品ⅴa在线观看| 国产传媒欧美日韩成人| 久久只精品国产| 国产乱妇无码大片在线观看| 精品国产乱码久久久久久蜜臀 | 中文字幕av在线一区二区三区| 卡一卡二国产精品 | 色综合久久久久综合体桃花网| 国产精品无圣光一区二区| 成人黄色在线看| 国产精品久久久久久一区二区三区 | 北条麻妃国产九九精品视频| 91浏览器入口在线观看| 欧美三日本三级三级在线播放| 99视频有精品| 色88888久久久久久影院按摩| 日韩不卡一二三区| 91麻豆精品国产| 久久激情五月激情| 国产无人区一区二区三区| 成人网在线免费视频| ...中文天堂在线一区| 欧美亚洲动漫制服丝袜| 日韩中文字幕一区二区三区| 精品理论电影在线| 成人精品视频.| 亚洲成年人网站在线观看| 欧美乱熟臀69xxxxxx| 欧美aaaaaa午夜精品| 久久午夜老司机| 99国产精品国产精品久久| 亚洲男同性恋视频| 337p亚洲精品色噜噜| 国产一区二区剧情av在线| 亚洲欧美日韩一区二区| 国产精品欧美精品| 欧美一区二区三区免费大片 |