< prev index next > src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Annotate.java
Print this page
private final Resolve resolve;
private final TreeMaker make;
private final Symtab syms;
private final TypeEnvs typeEnvs;
private final Types types;
+ private final Preview preview;
private final Attribute theUnfinishedDefaultValue;
private final String sourceName;
@SuppressWarnings("this-escape")
names = Names.instance(context);
resolve = Resolve.instance(context);
syms = Symtab.instance(context);
typeEnvs = TypeEnvs.instance(context);
types = Types.instance(context);
+ preview = Preview.instance(context);
theUnfinishedDefaultValue = new Attribute.Error(syms.errType);
Source source = Source.instance(context);
sourceName = source.name;
< prev index next >