Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: src/scopeinfo.h

Issue 20078: Remove unused code. This code used to be used to "decide" if a call... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/scopeinfo.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « no previous file | src/scopeinfo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698