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

Unified Diff: runtime/vm/object.h

Issue 24395007: Improve NoSuchMethodError error messages (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/errors_patch.dart ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 27825)
+++ runtime/vm/object.h (working copy)
@@ -1416,6 +1416,10 @@
// does not involve generic parameter types or generic result type.
bool HasInstantiatedSignature() const;
+ // Build a string of the form 'T, {b: B, c: C} representing the user
+ // visible formal parameters of the function.
+ RawString* UserVisibleFormalParameters() const;
+
RawClass* Owner() const;
RawClass* origin() const;
RawScript* script() const;
@@ -1863,6 +1867,10 @@
void set_data(const Object& value) const;
static RawFunction* New();
+ void BuildSinatureParameters(bool instantiate,
+ NameVisibility name_visibility,
+ const AbstractTypeArguments& instantiator,
+ const GrowableObjectArray& pieces) const;
RawString* BuildSignature(bool instantiate,
NameVisibility name_visibility,
const AbstractTypeArguments& instantiator) const;
« no previous file with comments | « runtime/lib/errors_patch.dart ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698