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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/function-details-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 Tests that Debugger.getFunctionDetails command returns correct location. Bug 718 08 1 Tests that Debugger.getFunctionDetails command returns correct location. Bug 718 08
2 2
3 3
4 Running: testGetFirstLineFunctionDetails 4 Running: testGetFirstLineFunctionDetails
5 firstLineFunction type = function 5 firstLineFunction type = function
6 Function details: 6 Function details:
7 lineNumber: 5 7 lineNumber: 5
8 columnNumber: 36 8 columnNumber: 36
9 scriptId is valid: true 9 scriptId is valid: true
10 functionName: firstLineFunction 10 functionName: firstLineFunction
11 isGenerator: false 11 scopeChain #0: Global; <global object properties omitted>
12 scopeChain #0: global; <global object properties omitted>
13 12
14 Running: testGetNonFirstLineFunctionDetails 13 Running: testGetNonFirstLineFunctionDetails
15 notFirstLineFunction type = function 14 notFirstLineFunction type = function
16 Function details: 15 Function details:
17 lineNumber: 10 16 lineNumber: 10
18 columnNumber: 32 17 columnNumber: 32
19 scriptId is valid: true 18 scriptId is valid: true
20 functionName: notFirstLineFunction 19 functionName: notFirstLineFunction
21 isGenerator: false 20 scopeChain #0: Global; <global object properties omitted>
22 scopeChain #0: global; <global object properties omitted>
23 21
24 Running: testGetDetailsOfFunctionWithInferredName 22 Running: testGetDetailsOfFunctionWithInferredName
25 obj.m type = function 23 obj.m type = function
26 Function details: 24 Function details:
27 lineNumber: 16 25 lineNumber: 16
28 columnNumber: 15 26 columnNumber: 15
29 scriptId is valid: true 27 scriptId is valid: true
30 functionName: m 28 functionName: m
31 isGenerator: false 29 scopeChain #0: Global; <global object properties omitted>
32 scopeChain #0: global; <global object properties omitted>
33 30
34 Running: testGetDetailsOfFunctionWithDisplayName 31 Running: testGetDetailsOfFunctionWithDisplayName
35 functionWithDisplayName type = function 32 functionWithDisplayName type = function
36 Function details: 33 Function details:
37 lineNumber: 19 34 lineNumber: 19
38 columnNumber: 32 35 columnNumber: 32
39 scriptId is valid: true 36 scriptId is valid: true
40 functionName: user-friendly name 37 functionName: user-friendly name
41 isGenerator: false 38 scopeChain #0: Global; <global object properties omitted>
42 scopeChain #0: global; <global object properties omitted>
43 39
44 Running: testGetDetailsOfFunctionWithDisplayNameGetter 40 Running: testGetDetailsOfFunctionWithDisplayNameGetter
45 functionWithDisplayNameGetter type = function 41 functionWithDisplayNameGetter type = function
46 Function details: 42 Function details:
47 lineNumber: 22 43 lineNumber: 22
48 columnNumber: 38 44 columnNumber: 38
49 scriptId is valid: true 45 scriptId is valid: true
50 functionName: functionWithDisplayNameGetter 46 functionName: functionWithDisplayNameGetter
51 isGenerator: false 47 scopeChain #0: Global; <global object properties omitted>
52 scopeChain #0: global; <global object properties omitted>
53 48
54 Running: testSmallClosure 49 Running: testSmallClosure
55 smallClosure type = function 50 smallClosure type = function
56 Function details: 51 Function details:
57 lineNumber: 25 52 lineNumber: 25
58 columnNumber: 49 53 columnNumber: 49
59 scriptId is valid: true 54 scriptId is valid: true
60 functionName: 55 functionName:
61 isGenerator: false 56 scopeChain #0: Closure; p: "Capybara"
62 scopeChain #0: closure; p: "Capybara" 57 scopeChain #1: Global; <global object properties omitted>
63 scopeChain #1: global; <global object properties omitted>
64 58
65 Running: testBigClosure 59 Running: testBigClosure
66 bigClosure type = function 60 bigClosure type = function
67 Function details: 61 Function details:
68 lineNumber: 38 62 lineNumber: 38
69 columnNumber: 27 63 columnNumber: 27
70 scriptId is valid: true 64 scriptId is valid: true
71 functionName: 65 functionName:
72 isGenerator: false 66 scopeChain #0: Catch; ex: <no string representation>
73 scopeChain #0: catch; ex: <no string representation> 67 scopeChain #1: With Block; __proto__: <no string representation>,e: 7,f: 5,u: <n o value>,v: <no value>
74 scopeChain #1: with; __proto__: <no string representation>,e: 7,f: 5,u: <no valu e>,v: <no value> 68 scopeChain #2: Closure; p: <no string representation>
75 scopeChain #2: closure; p: <no string representation> 69 scopeChain #3: Global; <global object properties omitted>
76 scopeChain #3: global; <global object properties omitted>
77 70
71 Running: testGenFunction
72 gen type = function
73 Function details:
74 lineNumber: 45
75 columnNumber: 13
76 scriptId is valid: true
77 functionName: gen
78 isGenerator: true
79 scopeChain #0: Global; <global object properties omitted>
80
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698