| Index: src/frames.h
|
| ===================================================================
|
| --- src/frames.h (revision 1355)
|
| +++ src/frames.h (working copy)
|
| @@ -148,7 +148,7 @@
|
| virtual Type type() const = 0;
|
|
|
| // Get the code associated with this frame.
|
| - virtual Code* FindCode() const = 0;
|
| + virtual Code* code() const = 0;
|
|
|
| // Garbage collection support.
|
| static void CookFramesForThread(ThreadLocalTop* thread);
|
| @@ -209,7 +209,7 @@
|
| public:
|
| virtual Type type() const { return ENTRY; }
|
|
|
| - virtual Code* FindCode() const;
|
| + virtual Code* code() const;
|
|
|
| // Garbage collection support.
|
| virtual void Iterate(ObjectVisitor* v) const;
|
| @@ -238,7 +238,7 @@
|
| public:
|
| virtual Type type() const { return ENTRY_CONSTRUCT; }
|
|
|
| - virtual Code* FindCode() const;
|
| + virtual Code* code() const;
|
|
|
| static EntryConstructFrame* cast(StackFrame* frame) {
|
| ASSERT(frame->is_entry_construct());
|
| @@ -259,7 +259,7 @@
|
| public:
|
| virtual Type type() const { return EXIT; }
|
|
|
| - virtual Code* FindCode() const;
|
| + virtual Code* code() const;
|
|
|
| // Garbage collection support.
|
| virtual void Iterate(ObjectVisitor* v) const;
|
| @@ -290,7 +290,7 @@
|
| public:
|
| virtual Type type() const { return EXIT_DEBUG; }
|
|
|
| - virtual Code* FindCode() const;
|
| + virtual Code* code() const;
|
|
|
| static ExitDebugFrame* cast(StackFrame* frame) {
|
| ASSERT(frame->is_exit_debug());
|
| @@ -399,7 +399,7 @@
|
| int index) const;
|
|
|
| // Determine the code for the frame.
|
| - virtual Code* FindCode() const;
|
| + virtual Code* code() const;
|
|
|
| static JavaScriptFrame* cast(StackFrame* frame) {
|
| ASSERT(frame->is_java_script());
|
| @@ -433,7 +433,7 @@
|
| virtual Type type() const { return ARGUMENTS_ADAPTOR; }
|
|
|
| // Determine the code for the frame.
|
| - virtual Code* FindCode() const;
|
| + virtual Code* code() const;
|
|
|
| static ArgumentsAdaptorFrame* cast(StackFrame* frame) {
|
| ASSERT(frame->is_arguments_adaptor());
|
| @@ -463,7 +463,7 @@
|
| virtual void Iterate(ObjectVisitor* v) const;
|
|
|
| // Determine the code for the frame.
|
| - virtual Code* FindCode() const;
|
| + virtual Code* code() const;
|
|
|
| static InternalFrame* cast(StackFrame* frame) {
|
| ASSERT(frame->is_internal());
|
|
|