evaluate-on-call-frame-in-module-expected.txt 7.82 KB
Newer Older
1 2 3 4
Tests evaluateOnCallFrame in module.

Running test: testTotal
foo1 (module1:7:2)
5
foo2 (module2:7:9)
6
(anonymous) (module3:4:0)
7
local:foo1
8 9 10 11 12 13 14
[
    [0] : c1 = 12
    [1] : g1 = 2
]
module
[
    [0] : a1 = 10
15 16
    [1] : b1 = 11
    [2] : foo1 = function foo1() {   let c1 = 12;   let g1 = 2;   debugger;   return a1 + b1 + c1 + g1; }
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
]
global
[
  ...
]
Check variables in frame#0
  let g1 = 2;
  #debugger;
  return a1 + b1 + c1 + g1;

Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
c1 = 
{
36
    description : 12
37 38 39 40 41 42
    type : number
    value : 12
}
Evaluating: ++c1
updated c1 = 
{
43
    description : 13
44 45 46 47 48 49
    type : number
    value : 13
}
Evaluating: --c1
g1 = 
{
50
    description : 2
51 52 53 54 55 56
    type : number
    value : 2
}
Evaluating: ++g1
updated g1 = 
{
57
    description : 3
58 59 60 61 62 63
    type : number
    value : 3
}
Evaluating: --g1
a1 = 
{
64
    description : 10
65 66 67 68 69 70
    type : number
    value : 10
}
Evaluating: ++a1
updated a1 = 
{
71
    description : 11
72 73 74 75 76 77
    type : number
    value : 11
}
Evaluating: --a1
b1 = 
{
78
    description : 11
79 80 81 82 83 84
    type : number
    value : 11
}
Evaluating: ++b1
updated b1 = 
{
85
    description : 12
86 87 88 89 90 91 92 93 94 95 96
    type : number
    value : 12
}
Evaluating: --b1
foo1 = 
{
    className : Function
    description : function foo1() {   let c1 = 12;   let g1 = 2;   debugger;   return a1 + b1 + c1 + g1; }
    objectId : <objectId>
    type : function
}
97
local:foo2
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
[
    [0] : c2 = 22
]
module
[
    [0] : a2 = 20
    [1] : foo1 = function foo1() {   let c1 = 12;   let g1 = 2;   debugger;   return a1 + b1 + c1 + g1; }
    [2] : b2 = 21
    [3] : foo2 = function foo2() {   let c2 = 22;   return foo1() + a2 + b2 + c2; }
]
global
[
  ...
]
Check variables in frame#1
  let c2 = 22;
  return #foo1() + a2 + b2 + c2;
}

Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
c2 = 
{
126
    description : 22
127 128 129 130 131 132
    type : number
    value : 22
}
Evaluating: ++c2
updated c2 = 
{
133
    description : 23
134 135 136 137 138 139
    type : number
    value : 23
}
Evaluating: --c2
a2 = 
{
140
    description : 20
141 142 143 144 145 146
    type : number
    value : 20
}
Evaluating: ++a2
updated a2 = 
{
147
    description : 21
148 149 150 151 152 153 154 155 156 157 158 159 160
    type : number
    value : 21
}
Evaluating: --a2
foo1 = 
{
    className : Function
    description : function foo1() {   let c1 = 12;   let g1 = 2;   debugger;   return a1 + b1 + c1 + g1; }
    objectId : <objectId>
    type : function
}
b2 = 
{
161
    description : 21
162 163 164 165 166 167
    type : number
    value : 21
}
Evaluating: ++b2
updated b2 = 
{
168
    description : 22
169 170 171 172 173 174 175 176 177 178 179 180 181
    type : number
    value : 22
}
Evaluating: --b2
foo2 = 
{
    className : Function
    description : function foo2() {   let c2 = 22;   return foo1() + a2 + b2 + c2; }
    objectId : <objectId>
    type : function
}
module
[
182
    [0] : foo2 = function foo2() {   let c2 = 22;   return foo1() + a2 + b2 + c2; }
183 184
    [1] : a3 = 30
    [2] : b3 = 31
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
]
global
[
  ...
]
Check variables in frame#2
export let b3 = 31;
#foo2();


Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
foo2 = 
{
    className : Function
    description : function foo2() {   let c2 = 22;   return foo1() + a2 + b2 + c2; }
    objectId : <objectId>
    type : function
}
209 210 211 212 213 214 215 216 217 218 219 220 221 222
a3 = 
{
    description : 30
    type : number
    value : 30
}
Evaluating: ++a3
updated a3 = 
{
    description : 31
    type : number
    value : 31
}
Evaluating: --a3
223 224
b3 = 
{
225
    description : 31
226 227 228 229 230 231
    type : number
    value : 31
}
Evaluating: ++b3
updated b3 = 
{
232
    description : 32
233 234 235 236 237 238 239 240 241
    type : number
    value : 32
}
Evaluating: --b3

Running test: testAnother
(anonymous) (module4:5:13)
bar (module4:5:24)
(anonymous) (module4:7:0)
242
local
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
[
]
closure:bar
[
    [0] : a = 0
]
global
[
  ...
]
Check variables in frame#0
  let a = 0;
  (() => {a; #debugger;})();
};

Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
a = 
{
267
    description : 0
268 269 270 271 272 273
    type : number
    value : 0
}
Evaluating: ++a
updated a = 
{
274
    description : 1
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
    type : number
    value : 1
}
Evaluating: --a
local:bar
[
    [0] : a = 0
]
global
[
  ...
]
Check variables in frame#1
  let a = 0;
  (() => {a; debugger;})#();
};

Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
a = 
{
301
    description : 0
302 303 304 305 306 307
    type : number
    value : 0
}
Evaluating: ++a
updated a = 
{
308
    description : 1
309 310 311 312
    type : number
    value : 1
}
Evaluating: --a
313 314 315 316 317 318
module
[
    [0] : a = 1
    [1] : b = 2
    [2] : bar = function bar() {   let a = 0;   (() => {a; debugger;})(); }
]
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
global
[
  ...
]
Check variables in frame#2
};
#bar();

Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
a = 
{
    description : 1
    type : number
    value : 1
}
Evaluating: ++a
updated a = 
{
    description : 2
    type : number
    value : 2
}
Evaluating: --a
b = 
{
    description : 2
    type : number
    value : 2
}
Evaluating: ++b
updated b = 
{
    description : 3
    type : number
    value : 3
}
Evaluating: --b
bar = 
{
    className : Function
    description : function bar() {   let a = 0;   (() => {a; debugger;})(); }
    objectId : <objectId>
    type : function
}
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396

Running test: testDifferentModuleVariables
(anonymous) (module5:5:0)
module
[
    [0] : b2 = 21
    [1] : a = 0
    [2] : b = 0
    [3] : c = 0
]
global
[
  ...
]
Check variables in frame#0
export var c = 0;
#debugger;


Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
b2 = 
{
397
    description : 21
398 399 400 401 402 403
    type : number
    value : 21
}
Evaluating: ++b2
updated b2 = 
{
404
    description : 21
405 406 407 408 409 410
    type : number
    value : 21
}
Evaluating: --b2
a = 
{
411
    description : 0
412 413 414 415 416 417
    type : number
    value : 0
}
Evaluating: ++a
updated a = 
{
418
    description : 0
419 420 421 422 423 424
    type : number
    value : 0
}
Evaluating: --a
b = 
{
425
    description : 0
426 427 428 429 430 431
    type : number
    value : 0
}
Evaluating: ++b
updated b = 
{
432
    description : 1
433 434 435 436 437 438
    type : number
    value : 1
}
Evaluating: --b
c = 
{
439
    description : 0
440 441 442 443 444 445
    type : number
    value : 0
}
Evaluating: ++c
updated c = 
{
446
    description : 1
447 448 449 450
    type : number
    value : 1
}
Evaluating: --c
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480

Running test: testCapturedLocalVariable
(anonymous) (module6:2:25)
(anonymous) (module6:2:37)
local
[
    [0] : y = 5
]
module
[
    [0] : x = 5
]
global
[
  ...
]
Check variables in frame#0
let x = 5;
(function() { let y = x; #debugger; })()


Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
y = 
{
481
    description : 5
482 483 484 485 486 487
    type : number
    value : 5
}
Evaluating: ++y
updated y = 
{
488
    description : 6
489 490 491 492 493 494
    type : number
    value : 6
}
Evaluating: --y
x = 
{
495
    description : 5
496 497 498 499 500 501
    type : number
    value : 5
}
Evaluating: ++x
updated x = 
{
502
    description : 6
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
    type : number
    value : 6
}
Evaluating: --x
module
[
    [0] : x = 5
]
global
[
  ...
]
Check variables in frame#1
let x = 5;
(function() { let y = x; debugger; })#()


Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
x = 
{
529
    description : 5
530 531 532 533 534 535
    type : number
    value : 5
}
Evaluating: ++x
updated x = 
{
536
    description : 6
537 538 539 540 541 542 543
    type : number
    value : 6
}
Evaluating: --x

Running test: testLocalVariableToplevel
(anonymous) (module7:2:0)
544 545 546 547
module
[
    [0] : x = 5
]
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
global
[
  ...
]
Check variables in frame#0
let x = 5;
#debugger;


Array = 
{
    className : Function
    description : function Array() { [native code] }
    objectId : <objectId>
    type : function
}
564 565 566 567 568 569 570 571 572 573 574 575 576 577
x = 
{
    description : 5
    type : number
    value : 5
}
Evaluating: ++x
updated x = 
{
    description : 6
    type : number
    value : 6
}
Evaluating: --x