⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 specialref.java

📁 javascript语言的解释器源码
💻 JAVA
字号:
package org.mozilla.javascript;class SpecialRef extends Ref{    static final long serialVersionUID = -7521596632456797847L;    private static final int SPECIAL_NONE = 0;    private static final int SPECIAL_PROTO = 1;    private static final int SPECIAL_PARENT = 2;    private Scriptable target;    private int type;    private String name;    private SpecialRef(Scriptable target, int type, String name)    {        this.target = target;        this.type = type;        this.name = name;    }    static Ref createSpecial(Context cx, Object object, String name)    {        Scriptable target = ScriptRuntime.toObjectOrNull(cx, object);        if (target == null) {            throw ScriptRuntime.undefReadError(object, name);        }        int type;        if (name.equals("__proto__")) {            type = SPECIAL_PROTO;        } else if (name.equals("__parent__")) {            type = SPECIAL_PARENT;        } else {            throw new IllegalArgumentException(name);        }        if (!cx.hasFeature(Context.FEATURE_PARENT_PROTO_PROPRTIES)) {            // Clear special after checking for valid name!            type = SPECIAL_NONE;        }        return new SpecialRef(target, type, name);    }    public Object get(Context cx)    {        switch (type) {          case SPECIAL_NONE:            return ScriptRuntime.getObjectProp(target, name, cx);          case SPECIAL_PROTO:            return target.getPrototype();          case SPECIAL_PARENT:            return target.getParentScope();          default:            throw Kit.codeBug();        }    }    public Object set(Context cx, Object value)    {        switch (type) {          case SPECIAL_NONE:            return ScriptRuntime.setObjectProp(target, name, value, cx);          case SPECIAL_PROTO:          case SPECIAL_PARENT:            {                Scriptable obj = ScriptRuntime.toObjectOrNull(cx, value);                if (obj != null) {                    // Check that obj does not contain on its prototype/scope                    // chain to prevent cycles                    Scriptable search = obj;                    do {                        if (search == target) {                            throw Context.reportRuntimeError1(                                "msg.cyclic.value", name);                        }                        if (type == SPECIAL_PROTO) {                            search = search.getPrototype();                        } else {                            search = search.getParentScope();                        }                    } while (search != null);                }                if (type == SPECIAL_PROTO) {                    target.setPrototype(obj);                } else {                    target.setParentScope(obj);                }                return obj;            }          default:            throw Kit.codeBug();        }    }    public boolean has(Context cx)    {        if (type == SPECIAL_NONE) {            return ScriptRuntime.hasObjectElem(target, name, cx);        }        return true;    }    public boolean delete(Context cx)    {        if (type == SPECIAL_NONE) {            return ScriptRuntime.deleteObjectElem(target, name, cx);        }        return false;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -