Chromium Code Reviews| Index: runtime/vm/dart_entry.h |
| =================================================================== |
| --- runtime/vm/dart_entry.h (revision 24825) |
| +++ runtime/vm/dart_entry.h (working copy) |
| @@ -141,6 +141,13 @@ |
| const String& target_name, |
| const Array& arguments, |
| const Array& arguments_descriptor); |
| + |
| + // Invokes a generative constructor, redirecting constructor, factory or |
| + // redirecting factory. On success, returns a RawInstance. On failure, |
| + // a RawError. |
| + static RawObject* InvokeConstructor(const Class& klass, |
|
rmacnak
2013/07/09 21:04:54
We do not yet have a variant supporting named/opti
|
| + const Function &constructor, |
| + const Array& arguments); |
| }; |