jdk.nashorn.internal.runtime.UnwarrantedOptimismException Java Examples

The following examples show how to use jdk.nashorn.internal.runtime.UnwarrantedOptimismException. 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: UndefinedArrayFilter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public int getIntOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getIntOptimistic(index, programPoint);
}
 
Example #2
Source File: NativeJavaImporter.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
@Override
protected Object invokeNoSuchProperty(final String name, final boolean isScope, final int programPoint) {
    final Object retval = createProperty(name);
    if (isValid(programPoint)) {
        throw new UnwarrantedOptimismException(retval, programPoint);
    }
    return retval;
}
 
Example #3
Source File: Expression.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
void optimisticTypeToString(final StringBuilder sb, final boolean optimistic) {
    sb.append('{');
    final Type type = getType();
    final String desc = type == Type.UNDEFINED ? "U" : type.getDescriptor();

    sb.append(desc.charAt(desc.length() - 1) == ';' ? "O" : desc);
    if (isOptimistic() && optimistic) {
        sb.append(OPT_IDENTIFIER);
        final int pp = ((Optimistic)this).getProgramPoint();
        if (UnwarrantedOptimismException.isValid(pp)) {
            sb.append('_').append(pp);
        }
    }
    sb.append('}');
}
 
Example #4
Source File: UndefinedArrayFilter.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public double getDoubleOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getDoubleOptimistic(index, programPoint);
}
 
Example #5
Source File: NativeJavaImporter.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
protected Object invokeNoSuchProperty(final String name, final int programPoint) {
    final Object retval = createProperty(name);
    if (isValid(programPoint)) {
        throw new UnwarrantedOptimismException(retval, programPoint);
    }
    return retval;
}
 
Example #6
Source File: UndefinedArrayFilter.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public int getIntOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getIntOptimistic(index, programPoint);
}
 
Example #7
Source File: UndefinedArrayFilter.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
@Override
public double getDoubleOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getDoubleOptimistic(index, programPoint);
}
 
Example #8
Source File: Expression.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
void optimisticTypeToString(final StringBuilder sb, final boolean optimistic) {
    sb.append('{');
    final Type type = getType();
    final String desc = type == Type.UNDEFINED ? "U" : type.getDescriptor();

    sb.append(desc.charAt(desc.length() - 1) == ';' ? "O" : desc);
    if (isOptimistic() && optimistic) {
        sb.append(OPT_IDENTIFIER);
        final int pp = ((Optimistic)this).getProgramPoint();
        if (UnwarrantedOptimismException.isValid(pp)) {
            sb.append('_').append(pp);
        }
    }
    sb.append('}');
}
 
Example #9
Source File: UndefinedArrayFilter.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public double getDoubleOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getDoubleOptimistic(index, programPoint);
}
 
Example #10
Source File: UndefinedArrayFilter.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public int getIntOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getIntOptimistic(index, programPoint);
}
 
Example #11
Source File: Expression.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
void optimisticTypeToString(final StringBuilder sb, final boolean optimistic) {
    sb.append('{');
    final Type type = getType();
    final String desc = type == Type.UNDEFINED ? "U" : type.getDescriptor();

    sb.append(desc.charAt(desc.length() - 1) == ';' ? "O" : desc);
    if (isOptimistic() && optimistic) {
        sb.append(OPT_IDENTIFIER);
        final int pp = ((Optimistic)this).getProgramPoint();
        if (UnwarrantedOptimismException.isValid(pp)) {
            sb.append('_').append(pp);
        }
    }
    sb.append('}');
}
 
Example #12
Source File: NativeJavaImporter.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
protected Object invokeNoSuchProperty(final String name, final boolean isScope, final int programPoint) {
    final Object retval = createProperty(name);
    if (isValid(programPoint)) {
        throw new UnwarrantedOptimismException(retval, programPoint);
    }
    return retval;
}
 
Example #13
Source File: UndefinedArrayFilter.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
@Override
public int getIntOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getIntOptimistic(index, programPoint);
}
 
Example #14
Source File: UndefinedArrayFilter.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public long getLongOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getLongOptimistic(index, programPoint);
}
 
Example #15
Source File: UndefinedArrayFilter.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public double getDoubleOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getDoubleOptimistic(index, programPoint);
}
 
Example #16
Source File: UndefinedArrayFilter.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public int getIntOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getIntOptimistic(index, programPoint);
}
 
Example #17
Source File: NativeJavaImporter.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
protected Object invokeNoSuchProperty(final String name, final boolean isScope, final int programPoint) {
    final Object retval = createProperty(name);
    if (isValid(programPoint)) {
        throw new UnwarrantedOptimismException(retval, programPoint);
    }
    return retval;
}
 
Example #18
Source File: NativeJavaImporter.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
protected Object invokeNoSuchProperty(final String name, final boolean isScope, final int programPoint) {
    final Object retval = createProperty(name);
    if (isValid(programPoint)) {
        throw new UnwarrantedOptimismException(retval, programPoint);
    }
    return retval;
}
 
Example #19
Source File: Expression.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
void optimisticTypeToString(final StringBuilder sb, final boolean optimistic) {
    sb.append('{');
    final Type type = getType();
    final String desc = type == Type.UNDEFINED ? "U" : type.getDescriptor();

    sb.append(desc.charAt(desc.length() - 1) == ';' ? "O" : desc);
    if (isOptimistic() && optimistic) {
        sb.append(OPT_IDENTIFIER);
        final int pp = ((Optimistic)this).getProgramPoint();
        if (UnwarrantedOptimismException.isValid(pp)) {
            sb.append('_').append(pp);
        }
    }
    sb.append('}');
}
 
Example #20
Source File: UndefinedArrayFilter.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public double getDoubleOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getDoubleOptimistic(index, programPoint);
}
 
Example #21
Source File: UndefinedArrayFilter.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public int getIntOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getIntOptimistic(index, programPoint);
}
 
Example #22
Source File: UndefinedArrayFilter.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public double getDoubleOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getDoubleOptimistic(index, programPoint);
}
 
Example #23
Source File: Expression.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
void optimisticTypeToString(final StringBuilder sb, final boolean optimistic) {
    sb.append('{');
    final Type type = getType();
    final String desc = type == Type.UNDEFINED ? "U" : type.getDescriptor();

    sb.append(desc.charAt(desc.length() - 1) == ';' ? "O" : desc);
    if (isOptimistic() && optimistic) {
        sb.append(OPT_IDENTIFIER);
        final int pp = ((Optimistic)this).getProgramPoint();
        if (UnwarrantedOptimismException.isValid(pp)) {
            sb.append('_').append(pp);
        }
    }
    sb.append('}');
}
 
Example #24
Source File: UndefinedArrayFilter.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public int getIntOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getIntOptimistic(index, programPoint);
}
 
Example #25
Source File: NativeJavaImporter.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
protected Object invokeNoSuchProperty(final Object key, final boolean isScope, final int programPoint) {
    if (!(key instanceof String)) {
        return super.invokeNoSuchProperty(key, isScope, programPoint);
    }
    final Object retval = createProperty((String) key);
    if (isValid(programPoint)) {
        throw new UnwarrantedOptimismException(retval, programPoint);
    }
    return retval;
}
 
Example #26
Source File: NativeJavaImporter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
protected Object invokeNoSuchProperty(final String name, final boolean isScope, final int programPoint) {
    final Object retval = createProperty(name);
    if (isValid(programPoint)) {
        throw new UnwarrantedOptimismException(retval, programPoint);
    }
    return retval;
}
 
Example #27
Source File: Expression.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
void optimisticTypeToString(final StringBuilder sb, final boolean optimistic) {
    sb.append('{');
    final Type type = getType();
    final String desc = type == Type.UNDEFINED ? "U" : type.getDescriptor();

    sb.append(desc.charAt(desc.length() - 1) == ';' ? "O" : desc);
    if (isOptimistic() && optimistic) {
        sb.append(OPT_IDENTIFIER);
        final int pp = ((Optimistic)this).getProgramPoint();
        if (UnwarrantedOptimismException.isValid(pp)) {
            sb.append('_').append(pp);
        }
    }
    sb.append('}');
}
 
Example #28
Source File: UndefinedArrayFilter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public double getDoubleOptimistic(final int index, final int programPoint) {
    if (undefined.isSet(index)) {
        throw new UnwarrantedOptimismException(UNDEFINED, programPoint);
    }

    return super.getDoubleOptimistic(index, programPoint);
}
 
Example #29
Source File: Expression.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
void optimisticTypeToString(final StringBuilder sb, final boolean optimistic) {
    sb.append('{');
    final Type type = getType();
    final String desc = type == Type.UNDEFINED ? "U" : type.getDescriptor();

    sb.append(desc.charAt(desc.length() - 1) == ';' ? "O" : desc);
    if (isOptimistic() && optimistic) {
        sb.append(OPT_IDENTIFIER);
        final int pp = ((Optimistic)this).getProgramPoint();
        if (UnwarrantedOptimismException.isValid(pp)) {
            sb.append('_').append(pp);
        }
    }
    sb.append('}');
}
 
Example #30
Source File: ObjectClassGenerator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@SuppressWarnings("unused")
private static Object getDifferentUndefined(final int programPoint) {
    throw new UnwarrantedOptimismException(Undefined.getUndefined(), programPoint);
}