| Index: runtime/vm/code_generator_arm.h
|
| ===================================================================
|
| --- runtime/vm/code_generator_arm.h (revision 4579)
|
| +++ runtime/vm/code_generator_arm.h (working copy)
|
| @@ -22,7 +22,8 @@
|
|
|
| class CodeGenerator : public AstNodeVisitor {
|
| public:
|
| - CodeGenerator(Assembler* assembler, const ParsedFunction& parsed_function) { }
|
| + CodeGenerator(Assembler* assembler, const ParsedFunction& parsed_function)
|
| + : pc_descriptors_list_(NULL) { }
|
| virtual ~CodeGenerator() { }
|
|
|
| bool GenerateCode() {
|
| @@ -47,6 +48,10 @@
|
| const Array& optional_arguments_names);
|
|
|
| private:
|
| + // Forward declarations.
|
| + class DescriptorList;
|
| +
|
| + DescriptorList* pc_descriptors_list_;
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(CodeGenerator);
|
| };
|
|
|
|
|