src/share/classes/com/sun/tools/javac/jvm/Gen.java

changeset 573
005bec70ca27
parent 554
9d9f26857129
parent 571
f0e3ec1f9d9f
child 591
d1d7595fa824
equal deleted inserted replaced
570:ab1356297c67 573:005bec70ca27
119 options.get("-g:") == null 119 options.get("-g:") == null
120 ? options.get("-g") != null 120 ? options.get("-g") != null
121 : options.get("-g:vars") != null; 121 : options.get("-g:vars") != null;
122 genCrt = options.get("-Xjcov") != null; 122 genCrt = options.get("-Xjcov") != null;
123 debugCode = options.get("debugcode") != null; 123 debugCode = options.get("debugcode") != null;
124 allowInvokedynamic = options.get("invokedynamic") != null; 124 allowInvokedynamic = target.hasInvokedynamic() || options.get("invokedynamic") != null;
125 125
126 generateIproxies = 126 generateIproxies =
127 target.requiresIproxy() || 127 target.requiresIproxy() ||
128 options.get("miranda") != null; 128 options.get("miranda") != null;
129 129

mercurial