diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/ExceptionHelpers.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/ExceptionHelpers.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 { |