jdk.nashorn.internal.runtime.UserAccessorProperty Java Examples
The following examples show how to use
jdk.nashorn.internal.runtime.UserAccessorProperty.
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: PrimitiveLookup.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
@SuppressWarnings("unused") private static void primitiveSetter(final ScriptObject wrappedSelf, final Object self, final Object key, final boolean strict, final Object value) { // See ES5.1 8.7.2 PutValue (V, W) final String name = JSType.toString(key); final FindProperty find = wrappedSelf.findProperty(name, true); if (find == null || !(find.getProperty() instanceof UserAccessorProperty) || !find.getProperty().isWritable()) { if (strict) { throw typeError("property.not.writable", name, ScriptRuntime.safeToString(self)); } return; } // property found and is a UserAccessorProperty find.setValue(value, strict); }
Example #2
Source File: PrimitiveLookup.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
@SuppressWarnings("unused") private static void primitiveSetter(final ScriptObject wrappedSelf, final Object self, final Object key, final boolean strict, final Object value) { // See ES5.1 8.7.2 PutValue (V, W) final String name = JSType.toString(key); final FindProperty find = wrappedSelf.findProperty(name, true); if (find == null || !(find.getProperty() instanceof UserAccessorProperty) || !find.getProperty().isWritable()) { if (strict) { throw typeError("property.not.writable", name, ScriptRuntime.safeToString(self)); } return; } // property found and is a UserAccessorProperty find.setValue(value, strict); }
Example #3
Source File: PrimitiveLookup.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
@SuppressWarnings("unused") private static void primitiveSetter(final ScriptObject wrappedSelf, final Object self, final Object key, final boolean strict, final Object value) { // See ES5.1 8.7.2 PutValue (V, W) final String name = JSType.toString(key); final FindProperty find = wrappedSelf.findProperty(name, true); if (find == null || !(find.getProperty() instanceof UserAccessorProperty) || !find.getProperty().isWritable()) { if (strict) { throw typeError("property.not.writable", name, ScriptRuntime.safeToString(self)); } return; } // property found and is a UserAccessorProperty find.setValue(value, strict); }
Example #4
Source File: PrimitiveLookup.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
@SuppressWarnings("unused") private static void primitiveSetter(final ScriptObject wrappedSelf, final Object self, final Object key, final boolean strict, final Object value) { // See ES5.1 8.7.2 PutValue (V, W) final String name = JSType.toString(key); final FindProperty find = wrappedSelf.findProperty(name, true); if (find == null || !(find.getProperty() instanceof UserAccessorProperty) || !find.getProperty().isWritable()) { if (strict) { throw typeError("property.not.writable", name, ScriptRuntime.safeToString(self)); } return; } // property found and is a UserAccessorProperty find.setValue(value, strict); }
Example #5
Source File: PrimitiveLookup.java From hottub with GNU General Public License v2.0 | 5 votes |
@SuppressWarnings("unused") private static void primitiveSetter(final ScriptObject wrappedSelf, final Object self, final Object key, final boolean strict, final Object value) { // See ES5.1 8.7.2 PutValue (V, W) final String name = JSType.toString(key); final FindProperty find = wrappedSelf.findProperty(name, true); if (find == null || !(find.getProperty() instanceof UserAccessorProperty) || !find.getProperty().isWritable()) { if (strict) { throw typeError("property.not.writable", name, ScriptRuntime.safeToString(self)); } return; } // property found and is a UserAccessorProperty find.setValue(value, strict); }
Example #6
Source File: PrimitiveLookup.java From jdk8u_nashorn with GNU General Public License v2.0 | 5 votes |
@SuppressWarnings("unused") private static void primitiveSetter(final ScriptObject wrappedSelf, final Object self, final Object key, final boolean strict, final Object value) { // See ES5.1 8.7.2 PutValue (V, W) final String name = JSType.toString(key); final FindProperty find = wrappedSelf.findProperty(name, true); if (find == null || !(find.getProperty() instanceof UserAccessorProperty) || !find.getProperty().isWritable()) { if (strict) { throw typeError("property.not.writable", name, ScriptRuntime.safeToString(self)); } return; } // property found and is a UserAccessorProperty find.setValue(value, strict); }