File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ const {
94
94
Symbol,
95
95
SymbolIterator,
96
96
SymbolMatchAll,
97
+ SymbolPrototype,
97
98
SyntaxError,
98
99
SyntaxErrorPrototype,
99
100
TypeError,
@@ -134,10 +135,11 @@ module.exports = function() {
134
135
} = require ( 'timers' ) ;
135
136
136
137
const intrinsicPrototypes = [
137
- // 21 Fundamental Objects
138
+ // 20 Fundamental Objects
138
139
ObjectPrototype , // 20.1
139
140
FunctionPrototype , // 20.2
140
141
BooleanPrototype , // 20.3
142
+ SymbolPrototype , // 20.4
141
143
142
144
ErrorPrototype , // 20.5
143
145
AggregateErrorPrototype ,
Original file line number Diff line number Diff line change @@ -35,5 +35,5 @@ assert.throws(
35
35
{
36
36
assert . throws ( ( ) => { globalThis . globalThis = null ; } ,
37
37
{ name : 'TypeError' } ) ;
38
- assert . notStrictEqual ( globalThis , null ) ;
38
+ assert . strictEqual ( globalThis . globalThis , globalThis ) ;
39
39
}
You can’t perform that action at this time.
0 commit comments