| 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 #ifndef VM_PARSER_H_ | 5 #ifndef VM_PARSER_H_ |
| 6 #define VM_PARSER_H_ | 6 #define VM_PARSER_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 | 9 |
| 10 #include "vm/ast.h" | 10 #include "vm/ast.h" |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 void ParseMethodOrConstructor(ClassDesc* members, MemberDesc* method); | 304 void ParseMethodOrConstructor(ClassDesc* members, MemberDesc* method); |
| 305 void ParseFieldDefinition(ClassDesc* members, MemberDesc* field); | 305 void ParseFieldDefinition(ClassDesc* members, MemberDesc* field); |
| 306 void ParseClassMemberDefinition(ClassDesc* members); | 306 void ParseClassMemberDefinition(ClassDesc* members); |
| 307 void ParseFormalParameter(bool allow_explicit_default_value, | 307 void ParseFormalParameter(bool allow_explicit_default_value, |
| 308 ParamList* params); | 308 ParamList* params); |
| 309 void ParseFormalParameters(bool allow_explicit_default_values, | 309 void ParseFormalParameters(bool allow_explicit_default_values, |
| 310 ParamList* params); | 310 ParamList* params); |
| 311 void ParseFormalParameterList(bool allow_explicit_default_values, | 311 void ParseFormalParameterList(bool allow_explicit_default_values, |
| 312 ParamList* params); | 312 ParamList* params); |
| 313 void CheckConstFieldsInitialized(const Class& cls); | 313 void CheckConstFieldsInitialized(const Class& cls); |
| 314 void CheckConstructors(ClassDesc* members); | 314 void AddImplicitConstructor(ClassDesc* members); |
| 315 void CheckConstructorCycles(ClassDesc* members); |
| 315 void ParseInitializedInstanceFields(const Class& cls, | 316 void ParseInitializedInstanceFields(const Class& cls, |
| 316 LocalVariable* receiver, | 317 LocalVariable* receiver, |
| 317 GrowableArray<Field*>* initialized_fields); | 318 GrowableArray<Field*>* initialized_fields); |
| 318 void CheckDuplicateFieldInit(intptr_t init_pos, | 319 void CheckDuplicateFieldInit(intptr_t init_pos, |
| 319 GrowableArray<Field*>* initialized_fields, | 320 GrowableArray<Field*>* initialized_fields, |
| 320 Field* field); | 321 Field* field); |
| 321 void GenerateSuperConstructorCall(const Class& cls, | 322 void GenerateSuperConstructorCall(const Class& cls, |
| 322 LocalVariable* receiver); | 323 LocalVariable* receiver); |
| 323 AstNode* ParseSuperInitializer(const Class& cls, LocalVariable* receiver); | 324 AstNode* ParseSuperInitializer(const Class& cls, LocalVariable* receiver); |
| 324 AstNode* ParseInitializer(const Class& cls, | 325 AstNode* ParseInitializer(const Class& cls, |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 | 571 |
| 571 // Allocate temporary only once per function. | 572 // Allocate temporary only once per function. |
| 572 LocalVariable* expression_temp_; | 573 LocalVariable* expression_temp_; |
| 573 | 574 |
| 574 DISALLOW_COPY_AND_ASSIGN(Parser); | 575 DISALLOW_COPY_AND_ASSIGN(Parser); |
| 575 }; | 576 }; |
| 576 | 577 |
| 577 } // namespace dart | 578 } // namespace dart |
| 578 | 579 |
| 579 #endif // VM_PARSER_H_ | 580 #endif // VM_PARSER_H_ |
| OLD | NEW |