| Index: runtime/vm/parser.h
|
| diff --git a/runtime/vm/parser.h b/runtime/vm/parser.h
|
| index 3dd35dc5086639796c59b97be1156db912458d66..7bdc5389d3a7f39d60f3453dc36a9a35c0a07e6d 100644
|
| --- a/runtime/vm/parser.h
|
| +++ b/runtime/vm/parser.h
|
| @@ -7,15 +7,15 @@
|
|
|
| #include "include/dart_api.h"
|
|
|
| +#include "lib/invocation_mirror.h"
|
| #include "platform/assert.h"
|
| #include "platform/globals.h"
|
| -#include "lib/invocation_mirror.h"
|
| #include "vm/allocation.h"
|
| #include "vm/ast.h"
|
| #include "vm/class_finalizer.h"
|
| #include "vm/compiler_stats.h"
|
| -#include "vm/kernel.h"
|
| #include "vm/hash_table.h"
|
| +#include "vm/kernel.h"
|
| #include "vm/object.h"
|
| #include "vm/raw_object.h"
|
| #include "vm/token.h"
|
| @@ -28,7 +28,7 @@ namespace kernel {
|
|
|
| class ScopeBuildingResult;
|
|
|
| -} // kernel
|
| +} // namespace kernel
|
|
|
| class ArgumentsDescriptor;
|
| class Isolate;
|
| @@ -160,7 +160,6 @@ class ParsedFunction : public ZoneAllocated {
|
| #endif
|
| }
|
|
|
| -
|
| const Instance& DefaultParameterValueAt(intptr_t i) const {
|
| ASSERT(default_parameter_values_ != NULL);
|
| return *default_parameter_values_->At(i);
|
| @@ -261,7 +260,6 @@ class ParsedFunction : public ZoneAllocated {
|
| DISALLOW_COPY_AND_ASSIGN(ParsedFunction);
|
| };
|
|
|
| -
|
| class Parser : public ValueObject {
|
| public:
|
| // Parse the top level of a whole script file and register declared classes
|
|
|