diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-07-07 14:41:27 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-07-18 22:38:31 -0400 |
commit | 3765f057896718bfca3056728a485448bfb411cb (patch) | |
tree | 545cb2e4908b802555b9730e97eb6cdb0b0bb3ef /js/src/jsapi.cpp | |
parent | 9a7113f7c8d89d27558942f42603c4edee779d20 (diff) | |
download | uxp-3765f057896718bfca3056728a485448bfb411cb.tar.gz |
Make JSErrorNotes Single Threaded
Diffstat (limited to 'js/src/jsapi.cpp')
-rw-r--r-- | js/src/jsapi.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/js/src/jsapi.cpp b/js/src/jsapi.cpp index 8cb3e58029..7cc7bd0352 100644 --- a/js/src/jsapi.cpp +++ b/js/src/jsapi.cpp @@ -6350,14 +6350,14 @@ CreateErrorNoteVA(JSContext* cx, } bool -JSErrorNotes::addNoteASCII(JSContext* cx, +JSErrorNotes::addNoteASCII(ExclusiveContext* cx, const char* filename, unsigned lineno, unsigned column, JSErrorCallback errorCallback, void* userRef, const unsigned errorNumber, ...) { va_list ap; va_start(ap, errorNumber); - auto note = CreateErrorNoteVA(cx, filename, lineno, column, errorCallback, userRef, + auto note = CreateErrorNoteVA(cx->asJSContext(), filename, lineno, column, errorCallback, userRef, errorNumber, ArgumentsAreASCII, ap); va_end(ap); @@ -6369,14 +6369,14 @@ JSErrorNotes::addNoteASCII(JSContext* cx, } bool -JSErrorNotes::addNoteLatin1(JSContext* cx, +JSErrorNotes::addNoteLatin1(ExclusiveContext* cx, const char* filename, unsigned lineno, unsigned column, JSErrorCallback errorCallback, void* userRef, const unsigned errorNumber, ...) { va_list ap; va_start(ap, errorNumber); - auto note = CreateErrorNoteVA(cx, filename, lineno, column, errorCallback, userRef, + auto note = CreateErrorNoteVA(cx->asJSContext(), filename, lineno, column, errorCallback, userRef, errorNumber, ArgumentsAreLatin1, ap); va_end(ap); @@ -6388,14 +6388,14 @@ JSErrorNotes::addNoteLatin1(JSContext* cx, } bool -JSErrorNotes::addNoteUTF8(JSContext* cx, +JSErrorNotes::addNoteUTF8(ExclusiveContext* cx, const char* filename, unsigned lineno, unsigned column, JSErrorCallback errorCallback, void* userRef, const unsigned errorNumber, ...) { va_list ap; va_start(ap, errorNumber); - auto note = CreateErrorNoteVA(cx, filename, lineno, column, errorCallback, userRef, + auto note = CreateErrorNoteVA(cx->asJSContext(), filename, lineno, column, errorCallback, userRef, errorNumber, ArgumentsAreUTF8, ap); va_end(ap); |