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

Side by Side Diff: tests/language_strong/deferred_not_loaded_check_lib.dart

Issue 2779843004: Fix top-level inference errors for most of the newly failing tests. (Closed)
Patch Set: Created 3 years, 8 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 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 foo(int arg) {} 5 foo(int arg) {}
6 6
7 class C { 7 class C {
8 C(int arg) {} 8 C(int arg) {}
9 static foo(int arg) {} 9 static foo(int arg) {}
10 } 10 }
11 11
12 var a; 12 var a;
13 13
14 int get getter => 42; 14 int get getter => 42;
15 15
16 void set setter(int arg) { 16 void set setter(int arg) {
17 a = 10; 17 a = 10;
18 } 18 }
19 19
20 var list = new List(); 20 var list = new List<int>();
21 21
22 var closure = (int arg) => 3; 22 var closure = (int arg) => 3;
OLDNEW
« no previous file with comments | « tests/language_strong/closure_in_field_initializer_test.dart ('k') | tests/language_strong/deferred_static_seperate_lib1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698