jdk.nashorn.internal.ir.TemporarySymbols Java Examples

The following examples show how to use jdk.nashorn.internal.ir.TemporarySymbols. 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: Attr.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructor.
 */
Attr(final TemporarySymbols temporarySymbols) {
    super(new LexicalContext());
    this.temporarySymbols = temporarySymbols;
    this.localDefs   = new ArrayDeque<>();
    this.localUses   = new ArrayDeque<>();
    this.returnTypes = new ArrayDeque<>();
}
 
Example #2
Source File: Attr.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructor.
 */
Attr(final TemporarySymbols temporarySymbols) {
    super(new LexicalContext());
    this.temporarySymbols = temporarySymbols;
    this.localDefs   = new ArrayDeque<>();
    this.localUses   = new ArrayDeque<>();
    this.returnTypes = new ArrayDeque<>();
}
 
Example #3
Source File: Attr.java    From nashorn with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructor.
 */
Attr(final TemporarySymbols temporarySymbols) {
    super(new LexicalContext());
    this.temporarySymbols = temporarySymbols;
    this.localDefs   = new ArrayDeque<>();
    this.localUses   = new ArrayDeque<>();
    this.returnTypes = new ArrayDeque<>();
}
 
Example #4
Source File: FinalizeTypes.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
FinalizeTypes(final TemporarySymbols temporarySymbols) {
    super(new LexicalContext());
    this.temporarySymbols = temporarySymbols;
}
 
Example #5
Source File: Compiler.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
TemporarySymbols getTemporarySymbols() {
    return temporarySymbols;
}
 
Example #6
Source File: FinalizeTypes.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
FinalizeTypes(final TemporarySymbols temporarySymbols) {
    super(new LexicalContext());
    this.temporarySymbols = temporarySymbols;
}
 
Example #7
Source File: Compiler.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
TemporarySymbols getTemporarySymbols() {
    return temporarySymbols;
}
 
Example #8
Source File: FinalizeTypes.java    From nashorn with GNU General Public License v2.0 4 votes vote down vote up
FinalizeTypes(final TemporarySymbols temporarySymbols) {
    super(new LexicalContext());
    this.temporarySymbols = temporarySymbols;
}
 
Example #9
Source File: Compiler.java    From nashorn with GNU General Public License v2.0 4 votes vote down vote up
TemporarySymbols getTemporarySymbols() {
    return temporarySymbols;
}