#ifndef JSJavaScriptCallFrame_h
#define JSJavaScriptCallFrame_h
-#if ENABLE(INSPECTOR)
-
#include "JSDestructibleObject.h"
#include "JavaScriptCallFrame.h"
class JSJavaScriptCallFrame : public JSC::JSDestructibleObject {
public:
typedef JSC::JSDestructibleObject Base;
+ static const unsigned StructureFlags = Base::StructureFlags;
DECLARE_INFO;
static const unsigned short WITH_SCOPE = 2;
static const unsigned short CLOSURE_SCOPE = 3;
static const unsigned short CATCH_SCOPE = 4;
+ static const unsigned short FUNCTION_NAME_SCOPE = 5;
protected:
- static const unsigned StructureFlags = Base::StructureFlags;
-
void finishCreation(JSC::VM&);
private:
} // namespace Inspector
-#endif // ENABLE(INSPECTOR)
-
#endif // !defined(JSJavaScriptCallFrame_h)