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

Side by Side Diff: runtime/vm/class_finalizer.cc

Issue 59683002: Clean up Parser::ParseTryStatement in the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/parser.h » ('j') | runtime/vm/parser.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart 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 4
5 #include "vm/class_finalizer.h" 5 #include "vm/class_finalizer.h"
6 6
7 #include "vm/code_generator.h"
7 #include "vm/flags.h" 8 #include "vm/flags.h"
8 #include "vm/heap.h" 9 #include "vm/heap.h"
9 #include "vm/isolate.h" 10 #include "vm/isolate.h"
10 #include "vm/longjump.h" 11 #include "vm/longjump.h"
11 #include "vm/object_store.h" 12 #include "vm/object_store.h"
12 #include "vm/parser.h" 13 #include "vm/parser.h"
13 #include "vm/symbols.h" 14 #include "vm/symbols.h"
14 15
15 namespace dart { 16 namespace dart {
16 17
(...skipping 2741 matching lines...) Expand 10 before | Expand all | Expand 10 after
2758 expected_name ^= String::New("_offset"); 2759 expected_name ^= String::New("_offset");
2759 ASSERT(String::EqualsIgnoringPrivateKey(name, expected_name)); 2760 ASSERT(String::EqualsIgnoringPrivateKey(name, expected_name));
2760 field ^= fields_array.At(2); 2761 field ^= fields_array.At(2);
2761 ASSERT(field.Offset() == TypedDataView::length_offset()); 2762 ASSERT(field.Offset() == TypedDataView::length_offset());
2762 name ^= field.name(); 2763 name ^= field.name();
2763 ASSERT(name.Equals("length")); 2764 ASSERT(name.Equals("length"));
2764 #endif 2765 #endif
2765 } 2766 }
2766 2767
2767 } // namespace dart 2768 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/parser.h » ('j') | runtime/vm/parser.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698