Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit c3f4ab4

Browse files
committed
test: update message baselines
1 parent 28b523e commit c3f4ab4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

test/message/eval_messages.chakracore.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ ReferenceError: Variable undefined in strict mode
5656
at bootstrapNodeJSCore (internal/bootstrap/node.js:*:*)
5757

5858
vm.js:*
59-
return realRunInThisContext.call(this, options);
60-
^
59+
return super.runInThisContext(...args);
60+
^
6161
10
6262

6363
vm.js:*
64-
return realRunInThisContext.call(this, options);
65-
^
64+
return super.runInThisContext(...args);
65+
^
6666
10
6767
done

test/message/stdin_messages.chakracore.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ ReferenceError: Variable undefined in strict mode
6464
at endReadableNT (_stream_readable.js:*:*)
6565

6666
vm.js:*
67-
return realRunInThisContext.call(this, options);
68-
^
67+
return super.runInThisContext(...args);
68+
^
6969
10
7070

7171
vm.js:*
72-
return realRunInThisContext.call(this, options);
73-
^
72+
return super.runInThisContext(...args);
73+
^
7474
10
7575
done

test/message/vm_dont_display_runtime_error.chakracore.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
beginning
22
middle
33
vm.js:*
4-
return realRunInThisContext.call(this, options);
5-
^
4+
return super.runInThisContext(...args);
5+
^
66

77
Error: boo!
88
at Global code (test.vm:*)

0 commit comments

Comments
 (0)