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

Unified Diff: runtime/vm/parser.h

Issue 11231074: Change signature of noSuchMethod to take an InvocationMirror. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: One more test expectation Created 8 years, 2 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
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.h
diff --git a/runtime/vm/parser.h b/runtime/vm/parser.h
index 7be09b1ca1a21b2d6a9f4ff56d5cb4fa6be7ee67..69d27af2fa41e0242e7cdcfbd929358c61742f6d 100644
--- a/runtime/vm/parser.h
+++ b/runtime/vm/parser.h
@@ -357,8 +357,14 @@ class Parser : public ValueObject {
void AddInterfaces(intptr_t interfaces_pos,
const Class& cls,
const Array& interfaces);
+ StaticCallNode* BuildInvocationMirrorAllocation(
+ intptr_t call_pos,
+ const String& function_name,
+ const ArgumentListNode& function_args);
ArgumentListNode* BuildNoSuchMethodArguments(
- const String& function_name, const ArgumentListNode& function_args);
+ intptr_t call_pos,
+ const String& function_name,
+ const ArgumentListNode& function_args);
RawFunction* GetSuperFunction(intptr_t token_pos,
const String& name,
bool resolve_getter,
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698