OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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/compiler.h" | 5 #include "vm/compiler.h" |
6 | 6 |
7 #include "vm/assembler.h" | 7 #include "vm/assembler.h" |
8 #include "vm/ast_printer.h" | 8 #include "vm/ast_printer.h" |
9 #include "vm/code_generator.h" | 9 #include "vm/code_generator.h" |
10 #include "vm/code_index_table.h" | 10 #include "vm/code_index_table.h" |
11 #include "vm/code_patcher.h" | 11 #include "vm/code_patcher.h" |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 } else { | 333 } else { |
334 result = isolate->object_store()->sticky_error(); | 334 result = isolate->object_store()->sticky_error(); |
335 isolate->object_store()->clear_sticky_error(); | 335 isolate->object_store()->clear_sticky_error(); |
336 } | 336 } |
337 isolate->set_long_jump_base(base); | 337 isolate->set_long_jump_base(base); |
338 return result.raw(); | 338 return result.raw(); |
339 } | 339 } |
340 | 340 |
341 | 341 |
342 } // namespace dart | 342 } // namespace dart |
OLD | NEW |