| Index: src/scopeinfo.h
|
| ===================================================================
|
| --- src/scopeinfo.h (revision 1226)
|
| +++ src/scopeinfo.h (working copy)
|
| @@ -75,8 +75,6 @@
|
|
|
| Handle<String> function_name() const { return function_name_; }
|
|
|
| - bool supports_eval() const { return supports_eval_; }
|
| -
|
| Handle<String> parameter_name(int i) const { return parameters_[i]; }
|
| int number_of_parameters() const { return parameters_.length(); }
|
|
|
| @@ -104,8 +102,6 @@
|
| // encoding of it's information in a Code object, which is why these
|
| // functions are in this class.
|
|
|
| - static bool SupportsEval(Code* code);
|
| -
|
| // Return the number of stack slots for code.
|
| static int NumberOfStackSlots(Code* code);
|
|
|
| @@ -146,7 +142,6 @@
|
|
|
| private:
|
| Handle<String> function_name_;
|
| - bool supports_eval_;
|
| List<Handle<String>, Allocator > parameters_;
|
| List<Handle<String>, Allocator > stack_slots_;
|
| List<Handle<String>, Allocator > context_slots_;
|
|
|