Skip to content

Commit 0ee118d

Browse files
concavelenzcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 695526469
1 parent a300c7f commit 0ee118d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/com/google/javascript/jscomp/integration/PolymerIntegrationTest.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,6 @@ public void testPolymerCorrectlyResolvesLocalTypes_forModules() {
307307
options.setLanguageOut(LanguageMode.ECMASCRIPT5);
308308
options.setParseJsDocDocumentation(JsDocParsing.INCLUDE_ALL_COMMENTS);
309309
options.setClosurePass(true);
310-
// TODO(b/144593112): remove this option
311-
options.setBadRewriteModulesBeforeTypecheckingThatWeWantToGetRidOf(true);
312310
addPolymerExterns();
313311
test(
314312
options,
@@ -327,10 +325,10 @@ public void testPolymerCorrectlyResolvesLocalTypes_forModules() {
327325
"var $jscomp = $jscomp || {};",
328326
"$jscomp.scope = {};",
329327
"$jscomp.reflectObject = function(type, object) { return object; };",
330-
"var module$exports$a={};",
331-
"var module$contents$a_MyTypedef;",
332328
"var XFooElement=function(){};",
329+
"var module$exports$a={};",
333330
"XFooElement.prototype.value;",
331+
"var module$contents$a_MyTypedef;",
334332
"Polymer({",
335333
"is:\"x-foo\",",
336334
"properties: $jscomp.reflectObject(XFooElement, {value:number})",

0 commit comments

Comments
 (0)