-WebCore::String (*__ZNK7WebCore6String15stripWhiteSpaceEv)(WebCore::String *);
-extern "C" WebCore::String _ZNK7WebCore6String15stripWhiteSpaceEv(WebCore::String *_this) {
- return __ZNK7WebCore6String15stripWhiteSpaceEv(_this); }
-WebCore::String (*__ZNK7WebCore6String5lowerEv)(WebCore::String *);
-extern "C" WebCore::String _ZNK7WebCore6String5lowerEv(WebCore::String *_this) {
- return __ZNK7WebCore6String5lowerEv(_this); }
-WebCore::CString (*__ZNK7WebCore6String4utf8Ev)(WebCore::String *);
-extern "C" WebCore::CString _ZNK7WebCore6String4utf8Ev(WebCore::String *_this) {
- return __ZNK7WebCore6String4utf8Ev(_this); }
-const char *(*__ZNK7WebCore7CString4dataEv)(WebCore::CString *);
-extern "C" const char *_ZNK7WebCore7CString4dataEv(WebCore::CString *_this) {
- return __ZNK7WebCore7CString4dataEv(_this); }
-
-MSHook(void, _ZN7WebCore17ScriptElementData14evaluateScriptERKNS_16ScriptSourceCodeE, WebCore::ScriptElementData *_this, const WebCore::ScriptSourceCode &code) {
- WebCore::String type(_this->m_scriptElement->typeAttributeValue());
- type = type.stripWhiteSpace().lower();
- NSLog(@"type:%s", type.utf8().data());
- __ZN7WebCore17ScriptElementData14evaluateScriptERKNS_16ScriptSourceCodeE(_this, code);
-}
-
-template <typename Type_>
-static void nlset(Type_ &function, struct nlist *nl, size_t index) {
- struct nlist &name(nl[index]);
- uintptr_t value(name.n_value);
- _assert(value != 0);
- if ((name.n_desc & N_ARM_THUMB_DEF) != 0)
- value |= 0x00000001;
- function = reinterpret_cast<Type_>(value);
-}
+/*extern "C" void _ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE(JSC::Parser *, JSC::JSGlobalData *, int *, JSC::UString *);
+MSHook(void, _ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE, JSC::Parser *_this, JSC::JSGlobalData *data, int *line, JSC::UString *message) {
+ return __ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE(_this, data, line, message);
+}*/