diff options
Diffstat (limited to 'WebCore/bindings/scripts/test/JS')
-rw-r--r-- | WebCore/bindings/scripts/test/JS/JSTestInterface.cpp | 24 | ||||
-rw-r--r-- | WebCore/bindings/scripts/test/JS/JSTestObj.cpp | 24 |
2 files changed, 6 insertions, 42 deletions
diff --git a/WebCore/bindings/scripts/test/JS/JSTestInterface.cpp b/WebCore/bindings/scripts/test/JS/JSTestInterface.cpp index 233ba21..51eb4ec 100644 --- a/WebCore/bindings/scripts/test/JS/JSTestInterface.cpp +++ b/WebCore/bindings/scripts/test/JS/JSTestInterface.cpp @@ -44,13 +44,7 @@ static const HashTableValue JSTestInterfaceTableValues[2] = }; #undef THUNK_GENERATOR -static JSC_CONST_HASHTABLE HashTable JSTestInterfaceTable = -#if ENABLE(PERFECT_HASH_SIZE) - { 0, JSTestInterfaceTableValues, 0 }; -#else - { 2, 1, JSTestInterfaceTableValues, 0 }; -#endif - +static JSC_CONST_HASHTABLE HashTable JSTestInterfaceTable = { 2, 1, JSTestInterfaceTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator @@ -64,13 +58,7 @@ static const HashTableValue JSTestInterfaceConstructorTableValues[1] = }; #undef THUNK_GENERATOR -static JSC_CONST_HASHTABLE HashTable JSTestInterfaceConstructorTable = -#if ENABLE(PERFECT_HASH_SIZE) - { 0, JSTestInterfaceConstructorTableValues, 0 }; -#else - { 1, 0, JSTestInterfaceConstructorTableValues, 0 }; -#endif - +static JSC_CONST_HASHTABLE HashTable JSTestInterfaceConstructorTable = { 1, 0, JSTestInterfaceConstructorTableValues, 0 }; class JSTestInterfaceConstructor : public DOMConstructorObject { public: JSTestInterfaceConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) @@ -129,13 +117,7 @@ static const HashTableValue JSTestInterfacePrototypeTableValues[1] = }; #undef THUNK_GENERATOR -static JSC_CONST_HASHTABLE HashTable JSTestInterfacePrototypeTable = -#if ENABLE(PERFECT_HASH_SIZE) - { 0, JSTestInterfacePrototypeTableValues, 0 }; -#else - { 1, 0, JSTestInterfacePrototypeTableValues, 0 }; -#endif - +static JSC_CONST_HASHTABLE HashTable JSTestInterfacePrototypeTable = { 1, 0, JSTestInterfacePrototypeTableValues, 0 }; const ClassInfo JSTestInterfacePrototype::s_info = { "TestInterfacePrototype", 0, &JSTestInterfacePrototypeTable, 0 }; JSObject* JSTestInterfacePrototype::self(ExecState* exec, JSGlobalObject* globalObject) diff --git a/WebCore/bindings/scripts/test/JS/JSTestObj.cpp b/WebCore/bindings/scripts/test/JS/JSTestObj.cpp index de5a171..926d137 100644 --- a/WebCore/bindings/scripts/test/JS/JSTestObj.cpp +++ b/WebCore/bindings/scripts/test/JS/JSTestObj.cpp @@ -66,13 +66,7 @@ static const HashTableValue JSTestObjTableValues[15] = }; #undef THUNK_GENERATOR -static JSC_CONST_HASHTABLE HashTable JSTestObjTable = -#if ENABLE(PERFECT_HASH_SIZE) - { 127, JSTestObjTableValues, 0 }; -#else - { 34, 31, JSTestObjTableValues, 0 }; -#endif - +static JSC_CONST_HASHTABLE HashTable JSTestObjTable = { 34, 31, JSTestObjTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator @@ -86,13 +80,7 @@ static const HashTableValue JSTestObjConstructorTableValues[1] = }; #undef THUNK_GENERATOR -static JSC_CONST_HASHTABLE HashTable JSTestObjConstructorTable = -#if ENABLE(PERFECT_HASH_SIZE) - { 0, JSTestObjConstructorTableValues, 0 }; -#else - { 1, 0, JSTestObjConstructorTableValues, 0 }; -#endif - +static JSC_CONST_HASHTABLE HashTable JSTestObjConstructorTable = { 1, 0, JSTestObjConstructorTableValues, 0 }; class JSTestObjConstructor : public DOMConstructorObject { public: JSTestObjConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) @@ -167,13 +155,7 @@ static const HashTableValue JSTestObjPrototypeTableValues[29] = }; #undef THUNK_GENERATOR -static JSC_CONST_HASHTABLE HashTable JSTestObjPrototypeTable = -#if ENABLE(PERFECT_HASH_SIZE) - { 8191, JSTestObjPrototypeTableValues, 0 }; -#else - { 69, 63, JSTestObjPrototypeTableValues, 0 }; -#endif - +static JSC_CONST_HASHTABLE HashTable JSTestObjPrototypeTable = { 69, 63, JSTestObjPrototypeTableValues, 0 }; const ClassInfo JSTestObjPrototype::s_info = { "TestObjPrototype", 0, &JSTestObjPrototypeTable, 0 }; JSObject* JSTestObjPrototype::self(ExecState* exec, JSGlobalObject* globalObject) |