@@ -92,11 +92,8 @@ public static Lower instance(Context context) {
92
92
private DiagnosticPosition make_pos ;
93
93
private final ConstFold cfolder ;
94
94
private final Target target ;
95
- private final Source source ;
96
95
private final TypeEnvs typeEnvs ;
97
96
private final Name dollarAssertionsDisabled ;
98
- private final Name classDollar ;
99
- private final Name dollarCloseResource ;
100
97
private final Types types ;
101
98
private final boolean debugLower ;
102
99
private final boolean disableProtectedAccessors ; // experimental
@@ -114,14 +111,9 @@ protected Lower(Context context) {
114
111
make = TreeMaker .instance (context );
115
112
cfolder = ConstFold .instance (context );
116
113
target = Target .instance (context );
117
- source = Source .instance (context );
118
114
typeEnvs = TypeEnvs .instance (context );
119
115
dollarAssertionsDisabled = names .
120
116
fromString (target .syntheticNameChar () + "assertionsDisabled" );
121
- classDollar = names .
122
- fromString ("class" + target .syntheticNameChar ());
123
- dollarCloseResource = names .
124
- fromString (target .syntheticNameChar () + "closeResource" );
125
117
126
118
types = Types .instance (context );
127
119
Options options = Options .instance (context );
0 commit comments