forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorPrototype.baseline
More file actions
65 lines (50 loc) · 1.64 KB
/
ErrorPrototype.baseline
File metadata and controls
65 lines (50 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Prototype is new Error()
Error: Prototype is new Error()
at testErrorStack (ErrorPrototype.js:21:9)
at testErrorPrototype (ErrorPrototype.js:34:5)
at testErrorPrototypeChain (ErrorPrototype.js:41:5)
at runtest (ErrorPrototype.js:46:5)
at Global code (ErrorPrototype.js:62:1)
Prototype has new Error()
Error: Prototype has new Error()
at testErrorStack (ErrorPrototype.js:21:9)
at testErrorPrototype (ErrorPrototype.js:34:5)
at testErrorPrototypeChain (ErrorPrototype.js:42:5)
at runtest (ErrorPrototype.js:46:5)
at Global code (ErrorPrototype.js:62:1)
Prototype is Error.prototype
undefined
Prototype has Error.prototype
undefined
Prototype is new RangeError()
RangeError: Prototype is new RangeError()
at testErrorStack (ErrorPrototype.js:21:9)
at testErrorPrototype (ErrorPrototype.js:34:5)
at testErrorPrototypeChain (ErrorPrototype.js:41:5)
at runtest (ErrorPrototype.js:48:5)
at Global code (ErrorPrototype.js:62:1)
Prototype has new RangeError()
RangeError: Prototype has new RangeError()
at testErrorStack (ErrorPrototype.js:21:9)
at testErrorPrototype (ErrorPrototype.js:34:5)
at testErrorPrototypeChain (ErrorPrototype.js:42:5)
at runtest (ErrorPrototype.js:48:5)
at Global code (ErrorPrototype.js:62:1)
Prototype is RangeError.prototype
undefined
Prototype has RangeError.prototype
undefined
Prototype is 123
undefined
Prototype has 123
undefined
Prototype is new String()
undefined
Prototype has new String()
undefined
throw Error.prototype
undefined
throw RangeError.prototype
undefined
throw TypeError.prototype
undefined