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

Unified Diff: tests/language/bit_operations_test.dart

Issue 166433002: Revert "Fix language tests wrt. warnings." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: tests/language/bit_operations_test.dart
diff --git a/tests/language/bit_operations_test.dart b/tests/language/bit_operations_test.dart
index 2d46ba7217b7be82abaae4d35da07575dcf87198..6c7b10659a887bafd6445624a4394e402bfceabd 100644
--- a/tests/language/bit_operations_test.dart
+++ b/tests/language/bit_operations_test.dart
@@ -93,19 +93,19 @@ void testLeftShift64Bit() {
Expect.equals(0xffffffff, t << 0);
Expect.equals(0x1fffffffe, t << 1);
Expect.equals(0x7fffffff80000000, t << 31);
- Expect.equals(0x10000000000000000, 2*(t+1) << 31); /// 01: static type warning
- Expect.equals(0x20000000000000000, 4*(t+1) << 31); /// 02: static type warning
+ Expect.equals(0x10000000000000000, 2*(t+1) << 31);
+ Expect.equals(0x20000000000000000, 4*(t+1) << 31);
Expect.equals(0x8000000000000000, (t+1) << 31);
}
void testLeftShift64BitWithOverflow1() {
var t = 0xffffffff;
- Expect.equals(0x10000000000000000, 2*(t+1) << 31); /// 03: static type warning
+ Expect.equals(0x10000000000000000, 2*(t+1) << 31);
}
void testLeftShift64BitWithOverflow2() {
var t = 0xffffffff;
- Expect.equals(0x20000000000000000, 4*(t+1) << 31); /// 04: static type warning
+ Expect.equals(0x20000000000000000, 4*(t+1) << 31);
}
void testLeftShift64BitWithOverflow3() {
« no previous file with comments | « tests/language/bad_named_parameters_test.dart ('k') | tests/language/call_constructor_on_unresolvable_class_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698