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

Side by Side Diff: tests/language/conditional_access_helper.dart

Issue 1151163004: Implementation of null-aware operators. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 // Library used by conditional_property_assignment_test.dart, 5 // Library used by conditional_property_assignment_test.dart,
6 // conditional_property_access_test.dart, and 6 // conditional_property_access_test.dart, and
7 // conditional_method_invocation_test.dart, all of which import it using the 7 // conditional_method_invocation_test.dart, all of which import it using the
8 // prefix "h.". 8 // prefix "h.".
9 9
10 library lib; 10 library lib;
11 11
12 var topLevelVar; 12 var topLevelVar;
13 13
14 void topLevelFunction() {}
15
14 class C { 16 class C {
15 static var staticField; 17 static var staticField;
18 static void staticMethod() {}
16 } 19 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js_extra/if_null_test.dart ('k') | tests/language/conditional_method_invocation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698