@@ -64,7 +64,7 @@ enum TypeInfoValidation {
6464 /** Validate that a SCRIPT's FeatureSet property includes all features if this is enabled. */
6565 private final boolean isScriptFeatureValidationEnabled ;
6666
67- // TODO: varomodt - make this the default.
67+ // TODO: user - make this the default.
6868 /** Validate that all required inlinings were performed. */
6969 private final boolean shouldValidateRequiredInlinings ;
7070
@@ -454,7 +454,7 @@ private void validatePseudoExpression(Node n, Token... allowedPseudoexpressions)
454454 private void validateTypeInformation (Node n ) {
455455 if (n .getIsInClosureUnawareSubtree ()) {
456456 // We don't expect closure-unaware code to have type information.
457- // TODO: b/321233583 - Maybe this should be a separate validation step, to ensure that nothing
457+ // TODO: user - Maybe this should be a separate validation step, to ensure that nothing
458458 // tries to infer type information where we are mostly unsure of it?
459459
460460 return ;
@@ -2128,7 +2128,7 @@ private void validateFeature(Feature feature, Node n) {
21282128 // Closure-unaware code is currently hidden from transpilation passes in the compiler when
21292129 // options.setClosureUnawareMode(Mode.PASS_THROUGH) is enabled, so the AST
21302130 // might still contain features that should have been transpiled.
2131- // TODO: b/321233583 - Once JSCompiler always transpiles closure-unaware code, remove this
2131+ // TODO: user - Once JSCompiler always transpiles closure-unaware code, remove this
21322132 // early-return to validate that all closure-unaware code is transpiled properly.
21332133 return ;
21342134 }
0 commit comments