Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(792)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/properties-special-expected.txt

Issue 2122423002: [DevTools] Remove functionDetails from protocol.json (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-generator-details-from-protocol
Patch Set: a Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 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.
5 6
6 properties-special.html:10 Boolean 7 properties-special.html:10 Boolean
7 __proto__: Boolean 8 __proto__: Boolean
8 [[PrimitiveValue]]: true 9 [[PrimitiveValue]]: true
9 properties-special.html:11 anonymous(a, b) 10 properties-special.html:11 anonymous(a, b)
10 arguments: null 11 arguments: null
11 caller: null 12 caller: null
12 length: 2 13 length: 2
13 name: "" 14 name: ""
14 prototype: Object 15 prototype: Object
15 __proto__: () 16 __proto__: ()
16 <function scope> 17 [[FunctionLocation]]: properties-special.html:11
17 properties-special.html:12 anonymous() 18 [[Scopes]]: Scopes[1]
19 properties-special.html:12 bound ()
18 arguments: (...) 20 arguments: (...)
19 caller: (...) 21 caller: (...)
20 length: 1 22 length: 1
21 name: "bound " 23 name: "bound "
22 __proto__: () 24 __proto__: ()
23 [[TargetFunction]]: (a,b) 25 [[TargetFunction]]: (a,b)
24 [[BoundThis]]: Object 26 [[BoundThis]]: Object
25 [[BoundArgs]]: Array[1] 27 [[BoundArgs]]: Array[1]
28 properties-special.html:13 anonymous()
29 arguments: (...)
30 caller: (...)
31 length: 0
32 name: ""
33 prototype: Generator
34 __proto__: GeneratorFunction
35 [[FunctionLocation]]: properties-special.html:13
36 [[IsGenerator]]: true
37 [[Scopes]]: Scopes[1]
26 38
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698