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

Side by Side Diff: pkg/front_end/testcases/implicit_scope_test.dart.direct.expect

Issue 2981783002: Set 'isSyntheticDefault' for default constructors. (Closed)
Patch Set: Created 3 years, 5 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 unified diff | Download patch
OLDNEW
1 library; 1 library;
2 import self as self; 2 import self as self;
3 import "dart:core" as core; 3 import "dart:core" as core;
4 import "package:expect/expect.dart" as exp; 4 import "package:expect/expect.dart" as exp;
5 5
6 class ImplicitScopeTest extends core::Object { 6 class ImplicitScopeTest extends core::Object {
7 constructor •() → void 7 default constructor •() → void
8 : super core::Object::•() 8 : super core::Object::•()
9 ; 9 ;
10 static method alwaysTrue() → core::bool { 10 static method alwaysTrue() → core::bool {
11 return 1.+(1).==(2); 11 return 1.+(1).==(2);
12 } 12 }
13 static method testMain() → dynamic { 13 static method testMain() → dynamic {
14 dynamic a = "foo"; 14 dynamic a = "foo";
15 dynamic b; 15 dynamic b;
16 if(self::ImplicitScopeTest::alwaysTrue()) { 16 if(self::ImplicitScopeTest::alwaysTrue()) {
17 dynamic a = "bar"; 17 dynamic a = "bar";
(...skipping 20 matching lines...) Expand all
38 dynamic b = "baz"; 38 dynamic b = "baz";
39 } 39 }
40 while ("black".==("white")) 40 while ("black".==("white"))
41 exp::Expect::equals("foo", a); 41 exp::Expect::equals("foo", a);
42 exp::Expect::equals(null, b); 42 exp::Expect::equals(null, b);
43 } 43 }
44 } 44 }
45 static method main() → dynamic { 45 static method main() → dynamic {
46 self::ImplicitScopeTest::testMain(); 46 self::ImplicitScopeTest::testMain();
47 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698