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

Unified Diff: tests/language/ct_const2_test.dart

Issue 10837359: Language tests updated to use const instead of final. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments Created 8 years, 4 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
« no previous file with comments | « tests/language/const_init_test.dart ('k') | tests/language/ct_const3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/ct_const2_test.dart
diff --git a/tests/language/ct_const2_test.dart b/tests/language/ct_const2_test.dart
index a306d972b450dfe7472234809042112e342b1eb1..3e3f017b5f972ba9258f329fe2aaff5f668517bd 100644
--- a/tests/language/ct_const2_test.dart
+++ b/tests/language/ct_const2_test.dart
@@ -7,99 +7,99 @@
// Exercises language constructs that require compile time constants
// Initialize with different literal types
-final b = true;
-final s = "apple";
-final i = 1;
-final d = 3.3;
-final h = 0xf;
-final n = null;
-final aList = const[1, 2, 3]; // array literal
-final aMap = const { "1": "one", "2": "banana" }; // map literal
+const b = true;
+const s = "apple";
+const i = 1;
+const d = 3.3;
+const h = 0xf;
+const n = null;
+const aList = const[1, 2, 3]; // array literal
+const aMap = const { "1": "one", "2": "banana" }; // map literal
-final INT_LIT = 5;
-final INT_LIT_REF = INT_LIT;
-final DOUBLE_LIT = 1.5;
-final BOOL_LIT = true;
-final STRING_LIT = "Hello";
+const INT_LIT = 5;
+const INT_LIT_REF = INT_LIT;
+const DOUBLE_LIT = 1.5;
+const BOOL_LIT = true;
+const STRING_LIT = "Hello";
-final BOP1_0 = INT_LIT + 1;
-final BOP1_1 = 1 + INT_LIT;
-final BOP1_2 = INT_LIT - 1;
-final BOP1_3 = 1 - INT_LIT;
-final BOP1_4 = INT_LIT * 1;
-final BOP1_5 = 1 * INT_LIT;
-final BOP1_6 = INT_LIT / 1;
-final BOP1_7 = 1 / INT_LIT;
-final BOP2_0 = DOUBLE_LIT + 1.5;
-final BOP2_1 = 1.5 + DOUBLE_LIT;
-final BOP2_2 = DOUBLE_LIT - 1.5;
-final BOP2_3 = 1.5 - DOUBLE_LIT;
-final BOP2_4 = DOUBLE_LIT * 1.5;
-final BOP2_5 = 1.5 * DOUBLE_LIT;
-final BOP2_6 = DOUBLE_LIT / 1.5;
-final BOP2_7 = 1.5 / DOUBLE_LIT;
-final BOP3_0 = 2 < INT_LIT;
-final BOP3_1 = INT_LIT < 2;
-final BOP3_2 = 2 > INT_LIT;
-final BOP3_3 = INT_LIT > 2;
-final BOP3_4 = 2 < DOUBLE_LIT;
-final BOP3_5 = DOUBLE_LIT < 2;
-final BOP3_6 = 2 > DOUBLE_LIT;
-final BOP3_7 = DOUBLE_LIT > 2;
-final BOP3_8 = 2 <= INT_LIT;
-final BOP3_9 = INT_LIT <= 2;
-final BOP3_10 = 2 >= INT_LIT;
-final BOP3_11 = INT_LIT >= 2;
-final BOP3_12 = 2.0 <= DOUBLE_LIT;
-final BOP3_13 = DOUBLE_LIT <= 2.0;
-final BOP3_14 = 2.0 >= DOUBLE_LIT;
-final BOP3_15 = DOUBLE_LIT >= 2;
-final BOP4_0 = 5 % INT_LIT;
-final BOP4_1 = INT_LIT % 5;
-final BOP4_2 = 5.0 % DOUBLE_LIT;
-final BOP4_3 = DOUBLE_LIT % 5.0;
-final BOP5_0 = 0x80 & 0x04;
-final BOP5_1 = 0x80 | 0x04;
-final BOP5_2 = 0x80 << 0x04;
-final BOP5_3 = 0x80 >> 0x04;
-final BOP5_4 = 0x80 ~/ 0x04;
-final BOP5_5 = 0x80 ^ 0x04;
-final BOP6 = BOOL_LIT && true;
-final BOP7 = false || BOOL_LIT;
-final BOP8 = STRING_LIT == "World!";
-final BOP9 = "Hello" != STRING_LIT;
-final BOP10 = INT_LIT === INT_LIT_REF;
-final BOP11 = BOOL_LIT !== true;
+const BOP1_0 = INT_LIT + 1;
+const BOP1_1 = 1 + INT_LIT;
+const BOP1_2 = INT_LIT - 1;
+const BOP1_3 = 1 - INT_LIT;
+const BOP1_4 = INT_LIT * 1;
+const BOP1_5 = 1 * INT_LIT;
+const BOP1_6 = INT_LIT / 1;
+const BOP1_7 = 1 / INT_LIT;
+const BOP2_0 = DOUBLE_LIT + 1.5;
+const BOP2_1 = 1.5 + DOUBLE_LIT;
+const BOP2_2 = DOUBLE_LIT - 1.5;
+const BOP2_3 = 1.5 - DOUBLE_LIT;
+const BOP2_4 = DOUBLE_LIT * 1.5;
+const BOP2_5 = 1.5 * DOUBLE_LIT;
+const BOP2_6 = DOUBLE_LIT / 1.5;
+const BOP2_7 = 1.5 / DOUBLE_LIT;
+const BOP3_0 = 2 < INT_LIT;
+const BOP3_1 = INT_LIT < 2;
+const BOP3_2 = 2 > INT_LIT;
+const BOP3_3 = INT_LIT > 2;
+const BOP3_4 = 2 < DOUBLE_LIT;
+const BOP3_5 = DOUBLE_LIT < 2;
+const BOP3_6 = 2 > DOUBLE_LIT;
+const BOP3_7 = DOUBLE_LIT > 2;
+const BOP3_8 = 2 <= INT_LIT;
+const BOP3_9 = INT_LIT <= 2;
+const BOP3_10 = 2 >= INT_LIT;
+const BOP3_11 = INT_LIT >= 2;
+const BOP3_12 = 2.0 <= DOUBLE_LIT;
+const BOP3_13 = DOUBLE_LIT <= 2.0;
+const BOP3_14 = 2.0 >= DOUBLE_LIT;
+const BOP3_15 = DOUBLE_LIT >= 2;
+const BOP4_0 = 5 % INT_LIT;
+const BOP4_1 = INT_LIT % 5;
+const BOP4_2 = 5.0 % DOUBLE_LIT;
+const BOP4_3 = DOUBLE_LIT % 5.0;
+const BOP5_0 = 0x80 & 0x04;
+const BOP5_1 = 0x80 | 0x04;
+const BOP5_2 = 0x80 << 0x04;
+const BOP5_3 = 0x80 >> 0x04;
+const BOP5_4 = 0x80 ~/ 0x04;
+const BOP5_5 = 0x80 ^ 0x04;
+const BOP6 = BOOL_LIT && true;
+const BOP7 = false || BOOL_LIT;
+const BOP8 = STRING_LIT == "World!";
+const BOP9 = "Hello" != STRING_LIT;
+const BOP10 = INT_LIT === INT_LIT_REF;
+const BOP11 = BOOL_LIT !== true;
// Multiple binary expressions
-final BOP20 = 1 * INT_LIT / 3 + INT_LIT + 9;
+const BOP20 = 1 * INT_LIT / 3 + INT_LIT + 9;
// Parenthised expressions
-final BOP30 = ( 1 > 2 );
-final BOP31 = (1 * 2) + 3;
-final BOP32= 3 + (1 * 2);
+const BOP30 = ( 1 > 2 );
+const BOP31 = (1 * 2) + 3;
+const BOP32= 3 + (1 * 2);
// Unary expressions
-final UOP1_0 = !BOOL_LIT;
-final UOP1_1 = BOOL_LIT || !true;
-final UOP1_2 = !BOOL_LIT || true;
-final UOP1_3 = !(BOOL_LIT && true);
-final UOP2_0 = ~0xf0;
-final UOP2_1 = ~INT_LIT;
-final UOP2_2 = ~INT_LIT & 123;
-final UOP2_3 = ~(INT_LIT | 0xff);
-final UOP3_0 = -0xf0;
-final UOP3_1 = -INT_LIT;
-final UOP3_2 = -INT_LIT + 123;
-final UOP3_3 = -(INT_LIT * 0xff);
-final UOP3_4 = -0xf0;
-final UOP3_5 = -DOUBLE_LIT;
-final UOP3_6 = -DOUBLE_LIT + 123;
-final UOP3_7 = -(DOUBLE_LIT * 0xff);
+const UOP1_0 = !BOOL_LIT;
+const UOP1_1 = BOOL_LIT || !true;
+const UOP1_2 = !BOOL_LIT || true;
+const UOP1_3 = !(BOOL_LIT && true);
+const UOP2_0 = ~0xf0;
+const UOP2_1 = ~INT_LIT;
+const UOP2_2 = ~INT_LIT & 123;
+const UOP2_3 = ~(INT_LIT | 0xff);
+const UOP3_0 = -0xf0;
+const UOP3_1 = -INT_LIT;
+const UOP3_2 = -INT_LIT + 123;
+const UOP3_3 = -(INT_LIT * 0xff);
+const UOP3_4 = -0xf0;
+const UOP3_5 = -DOUBLE_LIT;
+const UOP3_6 = -DOUBLE_LIT + 123;
+const UOP3_7 = -(DOUBLE_LIT * 0xff);
class A {
const A();
- static final a = const A(); // Assignment from Constant constructor OK
+ static const a = const A(); // Assignment from Constant constructor OK
}
main () {
« no previous file with comments | « tests/language/const_init_test.dart ('k') | tests/language/ct_const3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698