Index: runtime/vm/object.h |
=================================================================== |
--- runtime/vm/object.h (revision 9574) |
+++ runtime/vm/object.h (working copy) |
@@ -1460,9 +1460,16 @@ |
bool HasOptimizedCode() const; |
intptr_t NumberOfParameters() const; |
+ intptr_t NumberOfImplicitParameters() const; |
- bool AreValidArgumentCounts(int num_arguments, int num_named_arguments) const; |
- bool AreValidArguments(int num_arguments, const Array& argument_names) const; |
+ bool AreValidArgumentCounts(int num_arguments, |
srdjan
2012/07/12 00:06:37
Add comment what message_buffer contains and that
regis
2012/07/12 17:37:36
Done
|
+ int num_named_arguments, |
+ char* message_buffer, |
+ intptr_t message_buffer_size) const; |
+ bool AreValidArguments(int num_arguments, |
+ const Array& argument_names, |
+ char* message_buffer, |
+ intptr_t message_buffer_size) const; |
srdjan
2012/07/12 00:06:37
Instead of passing the and allocating the message_
regis
2012/07/12 17:37:36
Both functions now take a pointer to a String hand
|
// Fully qualified name uniquely identifying the function under gdb and during |
// ast printing. The special ':' character, if present, is replaced by '_'. |