Java Code Examples for jdk.nashorn.internal.runtime.ScriptObject#isScope()
The following examples show how to use
jdk.nashorn.internal.runtime.ScriptObject#isScope() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NashornGuards.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Get the guard for a property access. This returns an identity guard for non-configurable global properties * and a map guard for everything else. * * @param sobj the first object in the prototype chain * @param property the property * @param desc the callsite descriptor * @param explicitInstanceOfCheck true if we should do an explicit script object instanceof check instead of just casting * @return method handle for guard */ public static MethodHandle getGuard(final ScriptObject sobj, final Property property, final CallSiteDescriptor desc, final boolean explicitInstanceOfCheck) { if (!needsGuard(property, desc)) { return null; } if (NashornCallSiteDescriptor.isScope(desc) && sobj.isScope()) { if (property != null && property.isBound() && !property.canChangeType()) { // This is a declared top level variables in main script or eval, use identity guard. return getIdentityGuard(sobj); } if (!(sobj instanceof Global) && (property == null || property.isConfigurable())) { // Undeclared variables in nested evals need stronger guards return combineGuards(getIdentityGuard(sobj), getMapGuard(sobj.getMap(), explicitInstanceOfCheck)); } } return getMapGuard(sobj.getMap(), explicitInstanceOfCheck); }
Example 2
Source File: Global.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
@Override protected FindProperty findProperty(final String key, final boolean deep, final ScriptObject start) { if (lexicalScope != null && start != this && start.isScope()) { final FindProperty find = lexicalScope.findProperty(key, false); if (find != null) { return find; } } return super.findProperty(key, deep, start); }
Example 3
Source File: Global.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
@Override protected FindProperty findProperty(final String key, final boolean deep, final ScriptObject start) { if (lexicalScope != null && start != this && start.isScope()) { final FindProperty find = lexicalScope.findProperty(key, false); if (find != null) { return find; } } return super.findProperty(key, deep, start); }
Example 4
Source File: Global.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
@Override protected FindProperty findProperty(final String key, final boolean deep, final ScriptObject start) { if (lexicalScope != null && start != this && start.isScope()) { final FindProperty find = lexicalScope.findProperty(key, false); if (find != null) { return find; } } return super.findProperty(key, deep, start); }
Example 5
Source File: Global.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
@Override protected FindProperty findProperty(final String key, final boolean deep, final ScriptObject start) { if (lexicalScope != null && start != this && start.isScope()) { final FindProperty find = lexicalScope.findProperty(key, false); if (find != null) { return find; } } return super.findProperty(key, deep, start); }
Example 6
Source File: Global.java From hottub with GNU General Public License v2.0 | 5 votes |
@Override protected FindProperty findProperty(final String key, final boolean deep, final ScriptObject start) { if (lexicalScope != null && start != this && start.isScope()) { final FindProperty find = lexicalScope.findProperty(key, false); if (find != null) { return find; } } return super.findProperty(key, deep, start); }
Example 7
Source File: Global.java From jdk8u_nashorn with GNU General Public License v2.0 | 5 votes |
@Override protected FindProperty findProperty(final String key, final boolean deep, final ScriptObject start) { if (lexicalScope != null && start != this && start.isScope()) { final FindProperty find = lexicalScope.findProperty(key, false); if (find != null) { return find; } } return super.findProperty(key, deep, start); }