Java Code Examples for jdk.nashorn.internal.ir.Symbol#setTypeOverride()
The following examples show how to use
jdk.nashorn.internal.ir.Symbol#setTypeOverride() .
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 | 4 votes |
private void initCompileConstant(final CompilerConstants cc, final Block block, final int flags, final Type type) { final Symbol symbol = defineSymbol(block, cc.symbolName(), flags); symbol.setTypeOverride(type); symbol.setNeedsSlot(true); }
Example 2
Source File: Attr.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
private void initCompileConstant(final CompilerConstants cc, final Block block, final int flags, final Type type) { final Symbol symbol = defineSymbol(block, cc.symbolName(), flags); symbol.setTypeOverride(type); symbol.setNeedsSlot(true); }
Example 3
Source File: Attr.java From nashorn with GNU General Public License v2.0 | 4 votes |
private void initCompileConstant(final CompilerConstants cc, final Block block, final int flags, final Type type) { final Symbol symbol = defineSymbol(block, cc.symbolName(), flags); symbol.setTypeOverride(type); symbol.setNeedsSlot(true); }