Java Code Examples for jdk.nashorn.internal.ir.LexicalContext#isExternalTarget()

The following examples show how to use jdk.nashorn.internal.ir.LexicalContext#isExternalTarget() . 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: SplitMethodEmitter.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private int findExternalTarget(final LexicalContext lc, final Label label) {
    final int index = externalTargets.indexOf(label);

    if (index >= 0) {
        return index;
    }

    if (lc.isExternalTarget(splitNode, label)) {
        externalTargets.add(label);
        return externalTargets.size() - 1;
    }
    return -1;
}
 
Example 2
Source File: SplitMethodEmitter.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private int findExternalTarget(final LexicalContext lc, final Label label) {
    final int index = externalTargets.indexOf(label);

    if (index >= 0) {
        return index;
    }

    if (lc.isExternalTarget(splitNode, label)) {
        externalTargets.add(label);
        return externalTargets.size() - 1;
    }
    return -1;
}
 
Example 3
Source File: SplitMethodEmitter.java    From nashorn with GNU General Public License v2.0 5 votes vote down vote up
private int findExternalTarget(final LexicalContext lc, final Label label) {
    final int index = externalTargets.indexOf(label);

    if (index >= 0) {
        return index;
    }

    if (lc.isExternalTarget(splitNode, label)) {
        externalTargets.add(label);
        return externalTargets.size() - 1;
    }
    return -1;
}