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

Unified Diff: runtime/vm/parser.h

Issue 471283002: Runtime support for evaluation of static field initializer expressions (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/parser.h
===================================================================
--- runtime/vm/parser.h (revision 39260)
+++ runtime/vm/parser.h (working copy)
@@ -180,6 +180,10 @@
// class if the metadata is at the top-level).
static RawObject* ParseMetadata(const Class& cls, intptr_t token_pos);
+ // Build a function containing the initializer expression of the
+ // given static field.
+ static ParsedFunction* ParseStaticFieldInitializer(const Field& field);
+
// Parse a function to retrieve parameter information that is not retained in
// the dart::Function object. Returns either an error if the parse fails
// (which could be the case for local functions), or a flat array of entries
@@ -488,12 +492,13 @@
SequenceNode* ParseInstanceGetter(const Function& func);
SequenceNode* ParseInstanceSetter(const Function& func);
SequenceNode* ParseStaticFinalGetter(const Function& func);
- SequenceNode* ParseStaticInitializer(const Function& func);
+ SequenceNode* ParseStaticInitializer();
SequenceNode* ParseMethodExtractor(const Function& func);
SequenceNode* ParseNoSuchMethodDispatcher(const Function& func,
Array* default_values);
SequenceNode* ParseInvokeFieldDispatcher(const Function& func,
Array* default_values);
+
void BuildDispatcherScope(const Function& func,
const ArgumentsDescriptor& desc,
Array* default_values);

Powered by Google App Engine
This is Rietveld 408576698