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

Side by Side Diff: tests/unsorted/num_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/nsm_setter_test.dart ('k') | tests/unsorted/process_current_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 main() { 8 main() {
9 testEquality(); 9 testEquality();
10 testInheritance(); 10 testInheritance();
11 testDiv(); 11 testDiv();
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 Expect.equals(-1, y >> 75); 68 Expect.equals(-1, y >> 75);
69 x = 1 << 50; 69 x = 1 << 50;
70 y = -x; 70 y = -x;
71 Expect.equals(0, x >> 51); 71 Expect.equals(0, x >> 51);
72 Expect.equals(-1, y >> 51); 72 Expect.equals(-1, y >> 51);
73 Expect.equals(0, x >> 64); 73 Expect.equals(0, x >> 64);
74 Expect.equals(-1, y >> 64); 74 Expect.equals(-1, y >> 64);
75 Expect.equals(0, x >> 75); 75 Expect.equals(0, x >> 75);
76 Expect.equals(-1, y >> 75); 76 Expect.equals(-1, y >> 75);
77 } 77 }
OLDNEW
« no previous file with comments | « tests/unsorted/nsm_setter_test.dart ('k') | tests/unsorted/process_current_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698