OLD | NEW |
(Empty) | |
| 1 Checks protocol methods related to breakpoints |
| 2 |
| 3 Running test: oneBreakpointTwoScripts |
| 4 { |
| 5 method : Debugger.breakpointResolved |
| 6 params : { |
| 7 breakpointId : <breakpointId> |
| 8 location : { |
| 9 columnNumber : 6 |
| 10 lineNumber : 3 |
| 11 scriptId : <scriptId> |
| 12 } |
| 13 } |
| 14 } |
| 15 { |
| 16 method : Debugger.breakpointResolved |
| 17 params : { |
| 18 breakpointId : <breakpointId> |
| 19 location : { |
| 20 columnNumber : 6 |
| 21 lineNumber : 3 |
| 22 scriptId : <scriptId> |
| 23 } |
| 24 } |
| 25 } |
| 26 foo (oneBreakpointTwoScripts.js:3:6) |
| 27 arr.map.f (:0:13) |
| 28 (anonymous) (:0:4) |
| 29 { |
| 30 method : Debugger.paused |
| 31 params : { |
| 32 hitBreakpoints : [ |
| 33 [0] : oneBreakpointTwoScripts.js:3:0 |
| 34 ] |
| 35 reason : other |
| 36 } |
| 37 } |
| 38 foo (oneBreakpointTwoScripts.js:3:6) |
| 39 arr.map.f (:0:13) |
| 40 (anonymous) (:0:4) |
| 41 { |
| 42 method : Debugger.paused |
| 43 params : { |
| 44 hitBreakpoints : [ |
| 45 [0] : oneBreakpointTwoScripts.js:3:0 |
| 46 ] |
| 47 reason : other |
| 48 } |
| 49 } |
| 50 |
| 51 Running test: debugCommandAndRegularBreakpoint |
| 52 foo (test.js:9:2) |
| 53 (anonymous) (:0:0) |
| 54 { |
| 55 method : Debugger.paused |
| 56 params : { |
| 57 hitBreakpoints : [ |
| 58 [0] : <scriptId>:8:12:debug |
| 59 [1] : test.js:8:12 |
| 60 ] |
| 61 reason : debugCommand |
| 62 } |
| 63 } |
| 64 foo (test.js:9:2) |
| 65 (anonymous) (:0:0) |
| 66 { |
| 67 method : Debugger.paused |
| 68 params : { |
| 69 hitBreakpoints : [ |
| 70 [0] : test.js:8:12 |
| 71 ] |
| 72 reason : other |
| 73 } |
| 74 } |
| 75 |
| 76 Running test: setBreakpointByRawLocation |
| 77 boo (setBreakpointByRawLocation.js:2:6) |
| 78 (anonymous) (:0:0) |
| 79 { |
| 80 method : Debugger.paused |
| 81 params : { |
| 82 hitBreakpoints : [ |
| 83 [0] : <scriptId>:2:0 |
| 84 ] |
| 85 reason : other |
| 86 } |
| 87 } |
| 88 { |
| 89 error : { |
| 90 code : -32000 |
| 91 message : Breakpoint at specified location already exists. |
| 92 } |
| 93 id : <messageId> |
| 94 } |
| 95 { |
| 96 error : { |
| 97 code : -32000 |
| 98 message : Could not resolve breakpoint |
| 99 } |
| 100 id : <messageId> |
| 101 } |
| 102 |
| 103 Running test: setBreakpointArgumentsChecks |
| 104 { |
| 105 error : { |
| 106 code : -32000 |
| 107 message : Either url or urlRegex must be specified. |
| 108 } |
| 109 id : <messageId> |
| 110 } |
| 111 { |
| 112 error : { |
| 113 code : -32000 |
| 114 message : Breakpoint at specified location already exists. |
| 115 } |
| 116 id : <messageId> |
| 117 } |
| 118 |
| 119 Running test: setBreakpointByRegex |
| 120 { |
| 121 method : Debugger.breakpointResolved |
| 122 params : { |
| 123 breakpointId : <breakpointId> |
| 124 location : { |
| 125 columnNumber : 6 |
| 126 lineNumber : 3 |
| 127 scriptId : <scriptId> |
| 128 } |
| 129 } |
| 130 } |
| 131 { |
| 132 method : Debugger.breakpointResolved |
| 133 params : { |
| 134 breakpointId : <breakpointId> |
| 135 location : { |
| 136 columnNumber : 6 |
| 137 lineNumber : 3 |
| 138 scriptId : <scriptId> |
| 139 } |
| 140 } |
| 141 } |
| 142 foo (setBreakpointByRegex-1.js:3:6) |
| 143 arr.map.f (:0:13) |
| 144 (anonymous) (:0:4) |
| 145 { |
| 146 method : Debugger.paused |
| 147 params : { |
| 148 hitBreakpoints : [ |
| 149 [0] : /setBreakpointByRegex-[0-9]\.js/:3:0 |
| 150 ] |
| 151 reason : other |
| 152 } |
| 153 } |
| 154 foo (setBreakpointByRegex-2.js:3:6) |
| 155 arr.map.f (:0:13) |
| 156 (anonymous) (:0:4) |
| 157 { |
| 158 method : Debugger.paused |
| 159 params : { |
| 160 hitBreakpoints : [ |
| 161 [0] : /setBreakpointByRegex-[0-9]\.js/:3:0 |
| 162 ] |
| 163 reason : other |
| 164 } |
| 165 } |
OLD | NEW |