| OLD | NEW |
| 1 // Copyright (c) 2012, 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_patcher.h" | 10 #include "vm/code_patcher.h" |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 isolate->set_long_jump_base(base); | 435 isolate->set_long_jump_base(base); |
| 436 return result.raw(); | 436 return result.raw(); |
| 437 } else { | 437 } else { |
| 438 Object& result = Object::Handle(); | 438 Object& result = Object::Handle(); |
| 439 result = isolate->object_store()->sticky_error(); | 439 result = isolate->object_store()->sticky_error(); |
| 440 isolate->object_store()->clear_sticky_error(); | 440 isolate->object_store()->clear_sticky_error(); |
| 441 isolate->set_long_jump_base(base); | 441 isolate->set_long_jump_base(base); |
| 442 return result.raw(); | 442 return result.raw(); |
| 443 } | 443 } |
| 444 UNREACHABLE(); | 444 UNREACHABLE(); |
| 445 return Error::null(); | 445 return Object::null(); |
| 446 } | 446 } |
| 447 | 447 |
| 448 | 448 |
| 449 } // namespace dart | 449 } // namespace dart |
| OLD | NEW |