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

Unified Diff: vm/snapshot_test.cc

Issue 9835074: Fix for issue 2233 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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 | « vm/snapshot.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/snapshot_test.cc
===================================================================
--- vm/snapshot_test.cc (revision 5801)
+++ vm/snapshot_test.cc (working copy)
@@ -779,12 +779,16 @@
" Fields(int i, int j) : fld1 = i, fld2 = j {}\n"
" int fld1;\n"
" final int fld2;\n"
+ " final int bigint_fld = 0xfffffffffff;\n"
" static int fld3;\n"
- " static final int fld4 = 10;\n"
+ " static final int smi_fld = 10;\n"
+ " static final int bigint_fld = 0xfffffffffff;\n"
"}\n"
"class FieldsTest {\n"
" static Fields testMain() {\n"
+ " Expect.equals(true, Fields.bigint_fld == 0xfffffffffff);\n"
" Fields obj = new Fields(10, 20);\n"
+ " Expect.equals(true, obj.bigint_fld == 0xfffffffffff);\n"
" return obj;\n"
" }\n"
"}\n";
« no previous file with comments | « vm/snapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698