File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed
src/com/google/javascript/rhino Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -173,9 +173,6 @@ enum Prop {
173
173
FEATURE_SET ,
174
174
// Indicates a TypeScript abstract method or class, for use in Migrants
175
175
IS_TYPESCRIPT_ABSTRACT ,
176
- // TODO: b/279241038 Delete this prop as it's no longer used.
177
- // Indicates that a SCRIPT represents a transpiled file
178
- TRANSPILED ,
179
176
// For passes that work only on deleted funs.
180
177
DELETED ,
181
178
// Indicates that the node is an alias or a name from goog.require'd module or ES6
Original file line number Diff line number Diff line change @@ -143,9 +143,6 @@ private static final void setProps() {
143
143
return NodeProperty .COMPUTED_PROP_VARIABLE ;
144
144
case GOOG_MODULE :
145
145
return NodeProperty .GOOG_MODULE ;
146
- case TRANSPILED :
147
- // TODO: b/279241038 Delete this prop as it's no longer used.
148
- return NodeProperty .TRANSPILED ;
149
146
case MODULE_ALIAS :
150
147
return NodeProperty .MODULE_ALIAS ;
151
148
case MODULE_EXPORT :
Original file line number Diff line number Diff line change @@ -364,9 +364,6 @@ enum NodeProperty {
364
364
// Indicates that a SCRIPT node is a goog.module. Remains set after the
365
365
// goog.module is desugared.
366
366
GOOG_MODULE = 30 ;
367
- // Indicates that a SCRIPT represents a transpiled file
368
- // TODO: b/279241038 Delete this prop as it's no longer used.
369
- TRANSPILED = 34 ;
370
367
// For passes that work only on deleted funs.
371
368
DELETED = 35 ;
372
369
// Indicates that the node is an alias or a name from goog.require'd module or
You can’t perform that action at this time.
0 commit comments