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

Unified Diff: tests/compiler/dart2js/sourcemaps/data/invokes_test_file.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/sourcemaps/data/invokes_test_file.dart
diff --git a/tests/compiler/dart2js/sourcemaps/data/invokes_test_file.dart b/tests/compiler/dart2js/sourcemaps/data/invokes_test_file.dart
index be230b5c11cb35f48b719183bc05592ae691b9ed..c1526eee76b9c49544df3d5844305bd41f3ef7a5 100644
--- a/tests/compiler/dart2js/sourcemaps/data/invokes_test_file.dart
+++ b/tests/compiler/dart2js/sourcemaps/data/invokes_test_file.dart
@@ -45,7 +45,7 @@ toplevelFunction() {
counter++;
}
-var toplevelField = () {
+dynamic toplevelField = () {
counter++;
};
@@ -66,7 +66,7 @@ class B {
counter++;
}
- var superField = () {
+ dynamic superField = () {
counter++;
};
@@ -82,7 +82,7 @@ class C<T> extends B {
counter++;
}
- static var staticField = () {
+ static dynamic staticField = () {
counter++;
};
@@ -98,7 +98,7 @@ class C<T> extends B {
counter++;
}
- var instanceField = () {
+ dynamic instanceField = () {
counter++;
};
« no previous file with comments | « tests/compiler/dart2js/source_map_validator_helper.dart ('k') | tests/compiler/dart2js/sourcemaps/diff_view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698