< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/util/Names.java

Print this page

        

*** 204,213 **** --- 204,217 ---- // string concat public final Name makeConcat; public final Name makeConcatWithConstants; + // values + public final Name makeValue; + public final Name dollarValue; + public final Name.Table table; public Names(Context context) { Options options = Options.instance(context); table = createTable(options);
*** 368,377 **** --- 372,386 ---- altMetafactory = fromString("altMetafactory"); // string concat makeConcat = fromString("makeConcat"); makeConcatWithConstants = fromString("makeConcatWithConstants"); + + // value types + makeValue = fromString("$makeValue$"); + dollarValue = fromString("$value"); + } protected Name.Table createTable(Options options) { boolean useUnsharedTable = options.isSet("useUnsharedTable"); if (useUnsharedTable)
< prev index next >