From cd44dc59cdfc39534aef4d417e9f3c412e3be139 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 3 Feb 2012 09:55:33 +0100 Subject: Imported WebKit commit fce473cb4d55aa9fe9d0b0322a2fffecb731b961 (http://svn.webkit.org/repository/webkit/trunk@106560) --- Source/JavaScriptCore/runtime/ExceptionHelpers.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Source/JavaScriptCore/runtime/ExceptionHelpers.h') diff --git a/Source/JavaScriptCore/runtime/ExceptionHelpers.h b/Source/JavaScriptCore/runtime/ExceptionHelpers.h index f71d1a308..7bffd294b 100644 --- a/Source/JavaScriptCore/runtime/ExceptionHelpers.h +++ b/Source/JavaScriptCore/runtime/ExceptionHelpers.h @@ -33,15 +33,15 @@ namespace JSC { -JSObject* createInterruptedExecutionException(JSGlobalData*); +JS_EXPORT_PRIVATE JSObject* createInterruptedExecutionException(JSGlobalData*); bool isInterruptedExecutionException(JSObject*); bool isInterruptedExecutionException(JSValue); JSObject* createTerminatedExecutionException(JSGlobalData*); bool isTerminatedExecutionException(JSObject*); -bool isTerminatedExecutionException(JSValue); +JS_EXPORT_PRIVATE bool isTerminatedExecutionException(JSValue); -JSObject* createStackOverflowError(ExecState*); +JS_EXPORT_PRIVATE JSObject* createStackOverflowError(ExecState*); JSObject* createStackOverflowError(JSGlobalObject*); JSObject* createOutOfMemoryError(JSGlobalObject*); JSObject* createUndefinedVariableError(ExecState*, const Identifier&); @@ -79,7 +79,7 @@ public: return Structure::create(globalData, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), &s_info); } - static JS_EXPORTDATA const ClassInfo s_info; + static const ClassInfo s_info; }; class TerminatedExecutionError : public JSNonFinalObject { -- cgit v1.2.1