summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/ArrayBufferNeuteringWatchpoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/runtime/ArrayBufferNeuteringWatchpoint.cpp')
-rw-r--r--Source/JavaScriptCore/runtime/ArrayBufferNeuteringWatchpoint.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/Source/JavaScriptCore/runtime/ArrayBufferNeuteringWatchpoint.cpp b/Source/JavaScriptCore/runtime/ArrayBufferNeuteringWatchpoint.cpp
index a15b50440..b11a0ad3a 100644
--- a/Source/JavaScriptCore/runtime/ArrayBufferNeuteringWatchpoint.cpp
+++ b/Source/JavaScriptCore/runtime/ArrayBufferNeuteringWatchpoint.cpp
@@ -26,12 +26,12 @@
#include "config.h"
#include "ArrayBufferNeuteringWatchpoint.h"
-#include "JSCInlines.h"
+#include "Operations.h"
namespace JSC {
const ClassInfo ArrayBufferNeuteringWatchpoint::s_info = {
- "ArrayBufferNeuteringWatchpoint", 0, 0,
+ "ArrayBufferNeuteringWatchpoint", 0, 0, 0,
CREATE_METHOD_TABLE(ArrayBufferNeuteringWatchpoint)
};
@@ -57,12 +57,7 @@ ArrayBufferNeuteringWatchpoint* ArrayBufferNeuteringWatchpoint::create(VM& vm)
Structure* ArrayBufferNeuteringWatchpoint::createStructure(VM& vm)
{
- return Structure::create(vm, 0, jsNull(), TypeInfo(CellType, StructureFlags), info());
-}
-
-void ArrayBufferNeuteringWatchpoint::fireAll()
-{
- set()->fireAll("Array buffer was neutered");
+ return Structure::create(vm, 0, jsNull(), TypeInfo(CompoundType, StructureFlags), info());
}
} // namespace JSC