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

Unified Diff: runtime/vm/parser.h

Issue 8776020: Ongoing renaming of type classes: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/parser.h
===================================================================
--- runtime/vm/parser.h (revision 1992)
+++ runtime/vm/parser.h (working copy)
@@ -167,7 +167,9 @@
void SkipStringLiteral();
void CheckConstructorCallTypeArguments(
- intptr_t pos, Function& constructor, const TypeArguments& type_arguments);
+ intptr_t pos,
+ Function& constructor,
+ const AbstractTypeArguments& type_arguments);
// Reports error message at location of current token.
void ErrorMsg(const char* msg, ...);
@@ -178,10 +180,11 @@
const Instance& EvaluateConstExpr(AstNode* expr);
void RunStaticFieldInitializer(const Field& field);
- RawInstance* EvaluateConstConstructorCall(const Class& type_class,
- const TypeArguments& type_arguments,
- const Function& constructor,
- ArgumentListNode* arguments);
+ RawInstance* EvaluateConstConstructorCall(
+ const Class& type_class,
+ const AbstractTypeArguments& type_arguments,
+ const Function& constructor,
+ ArgumentListNode* arguments);
AstNode* FoldConstExpr(intptr_t expr_pos, AstNode* expr);
// Support for parsing of scripts.
@@ -212,7 +215,7 @@
};
RawAbstractType* ParseType(TypeResolution type_resolution);
void ParseTypeParameters(const Class& cls);
- RawTypeArguments* ParseTypeArguments(TypeResolution type_resolution);
+ RawAbstractTypeArguments* ParseTypeArguments(TypeResolution type_resolution);
void ParseQualIdent(QualIdent* qual_ident);
void ParseMethodOrConstructor(ClassDesc* members, MemberDesc* method);
void ParseFieldDefinition(ClassDesc* members, MemberDesc* field);
@@ -346,10 +349,10 @@
AstNode* ParseCompoundLiteral();
AstNode* ParseListLiteral(intptr_t type_pos,
bool is_const,
- const TypeArguments& type_arguments);
+ const AbstractTypeArguments& type_arguments);
AstNode* ParseMapLiteral(intptr_t type_pos,
bool is_const,
- const TypeArguments& type_arguments);
+ const AbstractTypeArguments& type_arguments);
AstNode* ParseNewOperator();
// An implicit argument, if non-null, is prepended to the returned list.

Powered by Google App Engine
This is Rietveld 408576698