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/parser.h" | 5 #include "vm/parser.h" |
6 #include "vm/flags.h" | 6 #include "vm/flags.h" |
7 | 7 |
8 #ifndef DART_PRECOMPILED_RUNTIME | 8 #ifndef DART_PRECOMPILED_RUNTIME |
9 | 9 |
10 #include "lib/invocation_mirror.h" | 10 #include "lib/invocation_mirror.h" |
(...skipping 14495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14506 void ParsedFunction::AllocateVariables() { | 14506 void ParsedFunction::AllocateVariables() { |
14507 UNREACHABLE(); | 14507 UNREACHABLE(); |
14508 } | 14508 } |
14509 | 14509 |
14510 | 14510 |
14511 void ParsedFunction::AllocateIrregexpVariables(intptr_t num_stack_locals) { | 14511 void ParsedFunction::AllocateIrregexpVariables(intptr_t num_stack_locals) { |
14512 UNREACHABLE(); | 14512 UNREACHABLE(); |
14513 } | 14513 } |
14514 | 14514 |
14515 | 14515 |
| 14516 void ParsedFunction::Bailout(const char* origin, const char* reason) const { |
| 14517 UNREACHABLE(); |
| 14518 } |
| 14519 |
| 14520 |
14516 void Parser::ParseCompilationUnit(const Library& library, | 14521 void Parser::ParseCompilationUnit(const Library& library, |
14517 const Script& script) { | 14522 const Script& script) { |
14518 UNREACHABLE(); | 14523 UNREACHABLE(); |
14519 } | 14524 } |
14520 | 14525 |
14521 | 14526 |
14522 void Parser::ParseClass(const Class& cls) { | 14527 void Parser::ParseClass(const Class& cls) { |
14523 UNREACHABLE(); | 14528 UNREACHABLE(); |
14524 } | 14529 } |
14525 | 14530 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14560 const ArgumentListNode& function_args, | 14565 const ArgumentListNode& function_args, |
14561 const LocalVariable* temp_for_last_arg, | 14566 const LocalVariable* temp_for_last_arg, |
14562 bool is_super_invocation) { | 14567 bool is_super_invocation) { |
14563 UNREACHABLE(); | 14568 UNREACHABLE(); |
14564 return NULL; | 14569 return NULL; |
14565 } | 14570 } |
14566 | 14571 |
14567 } // namespace dart | 14572 } // namespace dart |
14568 | 14573 |
14569 #endif // DART_PRECOMPILED_RUNTIME | 14574 #endif // DART_PRECOMPILED_RUNTIME |
OLD | NEW |