Java Code Examples for jdk.nashorn.internal.codegen.ObjectClassGenerator#OBJECT_FIELDS_ONLY

The following examples show how to use jdk.nashorn.internal.codegen.ObjectClassGenerator#OBJECT_FIELDS_ONLY . 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: SetMethodCreator.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private boolean needsNoGuard() {
    return NashornCallSiteDescriptor.isFastScope(desc) &&
            (ObjectClassGenerator.OBJECT_FIELDS_ONLY || isPropertyTypeStable());
}
 
Example 2
Source File: SetMethodCreator.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private boolean needsNoGuard() {
    return NashornCallSiteDescriptor.isFastScope(desc) &&
            (ObjectClassGenerator.OBJECT_FIELDS_ONLY || isPropertyTypeStable());
}
 
Example 3
Source File: SetMethodCreator.java    From nashorn with GNU General Public License v2.0 4 votes vote down vote up
private boolean needsNoGuard() {
    return NashornCallSiteDescriptor.isFastScope(desc) &&
            (ObjectClassGenerator.OBJECT_FIELDS_ONLY || isPropertyTypeStable());
}