| Index: src/ast.h
|
| diff --git a/src/ast.h b/src/ast.h
|
| index 8c8e4de70e4d295641e25a6dddd709d31684bad0..4f5e87701c6ac31df4e66389b8605cd3406c1dc2 100644
|
| --- a/src/ast.h
|
| +++ b/src/ast.h
|
| @@ -1149,20 +1149,20 @@ class CallNew: public Expression {
|
| class CallRuntime: public Expression {
|
| public:
|
| CallRuntime(Handle<String> name,
|
| - Runtime::Function* function,
|
| + const Runtime::Function* function,
|
| ZoneList<Expression*>* arguments)
|
| : name_(name), function_(function), arguments_(arguments) { }
|
|
|
| DECLARE_NODE_TYPE(CallRuntime)
|
|
|
| Handle<String> name() const { return name_; }
|
| - Runtime::Function* function() const { return function_; }
|
| + const Runtime::Function* function() const { return function_; }
|
| ZoneList<Expression*>* arguments() const { return arguments_; }
|
| bool is_jsruntime() const { return function_ == NULL; }
|
|
|
| private:
|
| Handle<String> name_;
|
| - Runtime::Function* function_;
|
| + const Runtime::Function* function_;
|
| ZoneList<Expression*>* arguments_;
|
| };
|
|
|
|
|