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

Unified Diff: compiler/javatests/com/google/dart/compiler/resolver/CompileTimeConstantTest.java

Issue 10535148: Fix for issue 1781 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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: compiler/javatests/com/google/dart/compiler/resolver/CompileTimeConstantTest.java
===================================================================
--- compiler/javatests/com/google/dart/compiler/resolver/CompileTimeConstantTest.java (revision 8609)
+++ compiler/javatests/com/google/dart/compiler/resolver/CompileTimeConstantTest.java (working copy)
@@ -220,7 +220,8 @@
" static final BOP5_2 = 0x80 << 0x04;",
" static final BOP5_3 = 0x80 >> 0x04;",
" static final BOP5_4 = 0x80 ~/ 0x04;",
- " static final BOP5_5 = 0x80 ^ 0x04;",
+ " static final BOP5_5 = DOUBLE_LIT ~/ DOUBLE_LIT;",
+ " static final BOP5_6 = 0x80 ^ 0x04;",
" static final BOP6 = BOOL_LIT && true;",
" static final BOP7 = false || BOOL_LIT;",
" static final BOP8 = STRING_LIT == \"World!\";",

Powered by Google App Engine
This is Rietveld 408576698