mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 16:40:19 +00:00

PR-URL: https://github.com/nodejs/node/pull/44741 Fixes: https://github.com/nodejs/node/issues/44650 Fixes: https://github.com/nodejs/node/issues/37472 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
25 lines
550 B
Plaintext
25 lines
550 B
Plaintext
Check that setScriptSource completes correctly when an exception is thrown.
|
|
|
|
Running test: testIncorrectScriptId
|
|
{
|
|
error : {
|
|
code : -32000
|
|
message : No script with given id found
|
|
}
|
|
id : <messageId>
|
|
}
|
|
|
|
Running test: testSourceWithSyntaxError
|
|
{
|
|
id : <messageId>
|
|
result : {
|
|
exceptionDetails : {
|
|
columnNumber : 11
|
|
exceptionId : <exceptionId>
|
|
lineNumber : 1
|
|
text : Uncaught SyntaxError: Invalid or unexpected token
|
|
}
|
|
status : CompileError
|
|
}
|
|
}
|