Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: runtime/vm/parser.h

Issue 10918226: Get rid of #resource directive in VM (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 Dart_Handle CallLibraryTagHandler(Dart_LibraryTag tag, 291 Dart_Handle CallLibraryTagHandler(Dart_LibraryTag tag,
292 intptr_t token_pos, 292 intptr_t token_pos,
293 const String& url); 293 const String& url);
294 void ParseLibraryDefinition(); 294 void ParseLibraryDefinition();
295 void ParseLibraryName(); 295 void ParseLibraryName();
296 void ParseLibraryImportExport(); 296 void ParseLibraryImportExport();
297 void ParseLibraryPart(); 297 void ParseLibraryPart();
298 void ParseLibraryNameObsoleteSyntax(); 298 void ParseLibraryNameObsoleteSyntax();
299 void ParseLibraryImportObsoleteSyntax(); 299 void ParseLibraryImportObsoleteSyntax();
300 void ParseLibraryIncludeObsoleteSyntax(); 300 void ParseLibraryIncludeObsoleteSyntax();
301 void ParseLibraryResourceObsoleteSyntax();
302 301
303 void ResolveTypeFromClass(const Class& cls, 302 void ResolveTypeFromClass(const Class& cls,
304 ClassFinalizer::FinalizationKind finalization, 303 ClassFinalizer::FinalizationKind finalization,
305 AbstractType* type); 304 AbstractType* type);
306 RawAbstractType* ParseType(ClassFinalizer::FinalizationKind finalization); 305 RawAbstractType* ParseType(ClassFinalizer::FinalizationKind finalization);
307 void ParseTypeParameters(const Class& cls); 306 void ParseTypeParameters(const Class& cls);
308 RawAbstractTypeArguments* ParseTypeArguments( 307 RawAbstractTypeArguments* ParseTypeArguments(
309 Error* malformed_error, 308 Error* malformed_error,
310 ClassFinalizer::FinalizationKind finalization); 309 ClassFinalizer::FinalizationKind finalization);
311 void ParseQualIdent(QualIdent* qual_ident); 310 void ParseQualIdent(QualIdent* qual_ident);
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 606
608 // Allocate temporary only once per function. 607 // Allocate temporary only once per function.
609 LocalVariable* expression_temp_; 608 LocalVariable* expression_temp_;
610 609
611 DISALLOW_COPY_AND_ASSIGN(Parser); 610 DISALLOW_COPY_AND_ASSIGN(Parser);
612 }; 611 };
613 612
614 } // namespace dart 613 } // namespace dart
615 614
616 #endif // VM_PARSER_H_ 615 #endif // VM_PARSER_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698