debug-scope-default-param-with-eval.js 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.


// Test that the parameter initialization block scope set up for
// sloppy eval is visible to the debugger.

var Debug = debug.Debug;
var exception = null;
var break_count = 0;

function call_for_break() {
  return 5;
}

function test(x = eval("var y = 7; debugger; y") + call_for_break()) {
  return x;
}

function listener(event, exec_state, event_data, data) {
  if (event != Debug.DebugEvent.Break) return;
  try {
    var frame = exec_state.frame(0);
25
    var block_scope;
26 27
    if (break_count++ == 0) {
      // Inside eval.
28 29
      assertEquals([ debug.ScopeType.Eval,
                     debug.ScopeType.Block,
30 31 32 33 34
                     debug.ScopeType.Closure,
                     debug.ScopeType.Script,
                     debug.ScopeType.Global ],
                   frame.allScopes().map(s => s.scopeType()));
      exec_state.prepareStep(Debug.StepAction.StepOut);
35
      block_scope = frame.scope(1);
36 37 38 39 40 41 42
    } else {
      // Outside of eval.
      assertEquals([ debug.ScopeType.Block,
                     debug.ScopeType.Local,
                     debug.ScopeType.Script,
                     debug.ScopeType.Global ],
                   frame.allScopes().map(s => s.scopeType()));
43
      block_scope = frame.scope(0);
44
    }
45 46
    assertTrue(block_scope.scopeObject().propertyNames().includes('y'));
    assertEquals(7, block_scope.scopeObject().property('y').value().value());
47
  } catch (e) {
48
    print(e);
49 50 51 52 53 54 55 56 57 58 59 60
    exception = e;
  }
}

Debug.setListener(listener);

assertEquals(12, test());

Debug.setListener(null);

assertNull(exception);
assertEquals(2, break_count);