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

Side by Side Diff: tests/unsorted/named_constructor_test.dart

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « tests/unsorted/messaging_test.dart ('k') | tests/unsorted/nsm_setter_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Fletch project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dartino 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 // Dart test for testing resolving of dynamic and static calls. 4 // Dart test for testing resolving of dynamic and static calls.
5 5
6 import "package:expect/expect.dart"; 6 import "package:expect/expect.dart";
7 7
8 class A { 8 class A {
9 A(x) { 9 A(x) {
10 Expect.equals(5, x); 10 Expect.equals(5, x);
11 } 11 }
(...skipping 13 matching lines...) Expand all
25 } 25 }
26 } 26 }
27 27
28 main() { 28 main() {
29 new A(5); 29 new A(5);
30 new A.named(7); 30 new A.named(7);
31 new B(3); 31 new B(3);
32 new B.named(5); 32 new B.named(5);
33 } 33 }
34 34
OLDNEW
« no previous file with comments | « tests/unsorted/messaging_test.dart ('k') | tests/unsorted/nsm_setter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698