| OLD | NEW |
| 1 CONSOLE MESSAGE: line 10: true | 1 CONSOLE MESSAGE: line 10: true |
| 2 CONSOLE MESSAGE: line 11: function (a,b) { return a + b; } | 2 CONSOLE MESSAGE: line 11: function (a,b) { return a + b; } |
| 3 CONSOLE MESSAGE: line 12: function () { [native code] } | 3 CONSOLE MESSAGE: line 12: function () { [native code] } |
| 4 CONSOLE MESSAGE: line 13: function* () { yeild [1,2,3] } | 4 CONSOLE MESSAGE: line 13: function* () { yeild [1,2,3] } |
| 5 Tests how debugger presents special properties of closures, bound functions and
object wrappers. | 5 Tests how debugger presents special properties of closures, bound functions and
object wrappers. |
| 6 | 6 |
| 7 properties-special.html:10 Boolean | 7 properties-special.html:10 Boolean |
| 8 __proto__: Boolean | 8 __proto__: Boolean |
| 9 [[PrimitiveValue]]: true | 9 [[PrimitiveValue]]: true |
| 10 properties-special.html:11 function anonymous(a,b) | 10 properties-special.html:11 function anonymous(a,b) |
| 11 arguments: null | 11 arguments: null |
| 12 caller: null | 12 caller: null |
| 13 length: 2 | 13 length: 2 |
| 14 name: "" | 14 name: "" |
| 15 prototype: Object | 15 prototype: Object |
| 16 __proto__: function () | 16 __proto__: function () |
| 17 [[FunctionLocation]]: properties-special.html:11 | 17 [[FunctionLocation]]: properties-special.html:11 |
| 18 [[Scopes]]: Scopes[1] | 18 [[Scopes]]: Scopes[1] |
| 19 properties-special.html:12 function bound () | 19 properties-special.html:12 function bound () |
| 20 arguments: (...) | 20 arguments: (...) |
| 21 caller: (...) | 21 caller: (...) |
| 22 length: 1 | 22 length: 1 |
| 23 name: "bound " | 23 name: "bound " |
| 24 __proto__: function () | 24 __proto__: function () |
| 25 [[TargetFunction]]: function (a,b) | 25 [[TargetFunction]]: function (a,b) |
| 26 [[BoundThis]]: Object | 26 [[BoundThis]]: Object |
| 27 [[BoundArgs]]: Array[1] | 27 [[BoundArgs]]: Array(1) |
| 28 properties-special.html:13 function* anonymous() | 28 properties-special.html:13 function* anonymous() |
| 29 arguments: (...) | 29 arguments: (...) |
| 30 caller: (...) | 30 caller: (...) |
| 31 length: 0 | 31 length: 0 |
| 32 name: "" | 32 name: "" |
| 33 prototype: Generator | 33 prototype: Generator |
| 34 __proto__: GeneratorFunction | 34 __proto__: GeneratorFunction |
| 35 [[FunctionLocation]]: properties-special.html:13 | 35 [[FunctionLocation]]: properties-special.html:13 |
| 36 [[IsGenerator]]: true | 36 [[IsGenerator]]: true |
| 37 [[Scopes]]: Scopes[1] | 37 [[Scopes]]: Scopes[1] |
| 38 | 38 |
| OLD | NEW |