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

Unified Diff: pkg/analyzer/test/src/summary/resynthesize_test.dart

Issue 2030403002: Resynthesize constructors lazily. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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: pkg/analyzer/test/src/summary/resynthesize_test.dart
diff --git a/pkg/analyzer/test/src/summary/resynthesize_test.dart b/pkg/analyzer/test/src/summary/resynthesize_test.dart
index eea778b310185fbb53f1d66ce886671e71a6761e..c83edad5676ba461cebff6387b8ca78c21f79759 100644
--- a/pkg/analyzer/test/src/summary/resynthesize_test.dart
+++ b/pkg/analyzer/test/src/summary/resynthesize_test.dart
@@ -3655,7 +3655,7 @@ get g {
checkLibrary(r'''
class C {
C() {
- aaa: while (true) {}
+ aaa: print(0);
bbb: switch (42) {
ccc: case 0:
break;
@@ -3669,7 +3669,7 @@ class C {
checkLibrary(r'''
class C {
m() {
- aaa: while (true) {}
+ aaa: print(0);
bbb: switch (42) {
ccc: case 0:
break;
@@ -3682,7 +3682,7 @@ class C {
test_localLabels_inTopLevelFunction() {
checkLibrary(r'''
main() {
- aaa: while (true) {}
+ aaa: print(0);
bbb: switch (42) {
ccc: case 0:
break;

Powered by Google App Engine
This is Rietveld 408576698