Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: tests/compiler/dart2js/deferred_dont_inline_deferred_constants_test.dart

Issue 2944843002: All strong mode cleaning of dart2js. (Closed)
Patch Set: More issues discovered during testing. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/compiler/dart2js/deferred_dont_inline_deferred_constants_test.dart
diff --git a/tests/compiler/dart2js/deferred_dont_inline_deferred_constants_test.dart b/tests/compiler/dart2js/deferred_dont_inline_deferred_constants_test.dart
index 6723c17fca620fb1bb7cf11eb3eeed5b2afb96a0..853d5b4faf101585cc570df1548cbc80432a316f 100644
--- a/tests/compiler/dart2js/deferred_dont_inline_deferred_constants_test.dart
+++ b/tests/compiler/dart2js/deferred_dont_inline_deferred_constants_test.dart
@@ -30,15 +30,15 @@ void main() {
var outputUnitForElement = compiler.deferredLoadTask.outputUnitForElement;
- var lib1 = lookupLibrary("memory:lib1.dart");
+ dynamic lib1 = lookupLibrary("memory:lib1.dart");
var foo1 = lib1.find("foo");
var ou_lib1 = outputUnitForElement(foo1);
- var lib2 = lookupLibrary("memory:lib2.dart");
+ dynamic lib2 = lookupLibrary("memory:lib2.dart");
var foo2 = lib2.find("foo");
var ou_lib2 = outputUnitForElement(foo2);
- var mainApp = compiler.frontendStrategy.elementEnvironment.mainLibrary;
+ dynamic mainApp = compiler.frontendStrategy.elementEnvironment.mainLibrary;
var fooMain = mainApp.find("foo");
var ou_lib1_lib2 = outputUnitForElement(fooMain);

Powered by Google App Engine
This is Rietveld 408576698