| Index: runtime/vm/intermediate_language.h
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.h (revision 14694)
|
| +++ runtime/vm/intermediate_language.h (working copy)
|
| @@ -2524,6 +2524,8 @@
|
|
|
| intptr_t token_pos() const { return ast_node_.token_pos(); }
|
|
|
| + const Function& function() const { return ast_node_.function(); }
|
| +
|
| const String& native_name() const {
|
| return ast_node_.native_c_function_name();
|
| }
|
| @@ -2532,16 +2534,6 @@
|
| return ast_node_.native_c_function();
|
| }
|
|
|
| - intptr_t argument_count() const { return ast_node_.argument_count(); }
|
| -
|
| - bool has_optional_parameters() const {
|
| - return ast_node_.has_optional_parameters();
|
| - }
|
| -
|
| - bool is_native_instance_closure() const {
|
| - return ast_node_.is_native_instance_closure();
|
| - }
|
| -
|
| virtual void PrintOperandsTo(BufferFormatter* f) const;
|
|
|
| virtual bool CanDeoptimize() const { return false; }
|
|
|