test-api.js 28.4 KB
Newer Older
1 2 3 4
// 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.

5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
"use strict";

// If true, prints all messages sent and received by inspector.
const printProtocolMessages = false;

// The active wrapper instance.
let activeWrapper = undefined;

// Receiver function called by inspector, delegating to active wrapper.
function receive(message) {
  activeWrapper.receiveMessage(message);
}

class DebugWrapper {
  constructor() {
    // Message dictionary storing {id, message} pairs.
21
    this.receivedMessages = new Map();
22 23 24 25 26 27

    // Each message dispatched by the Debug wrapper is assigned a unique number
    // using nextMessageId.
    this.nextMessageId = 0;

    // The listener method called on certain events.
28 29 30
    this.listener = undefined;

    // Debug events which can occur in the V8 JavaScript engine.
31 32
    this.DebugEvent = { Break: 1,
                        Exception: 2,
33 34
                        AfterCompile: 3,
                        CompileError: 4,
35
                      };
36

37 38 39 40 41 42 43
    // The different types of steps.
    this.StepAction = { StepOut: 0,
                        StepNext: 1,
                        StepIn: 2,
                        StepFrame: 3,
                      };

44 45 46 47
    // The different types of scripts matching enum ScriptType in objects.h.
    this.ScriptType = { Native: 0,
                        Extension: 1,
                        Normal: 2,
48 49 50
                        Wasm: 3,
                        Inspector: 4,
                      };
51

52 53 54 55 56 57 58 59 60 61 62 63 64 65
    // A copy of the scope types from runtime-debug.cc.
    // NOTE: these constants should be backward-compatible, so
    // add new ones to the end of this list.
    this.ScopeType = { Global:  0,
                       Local:   1,
                       With:    2,
                       Closure: 3,
                       Catch:   4,
                       Block:   5,
                       Script:  6,
                       Eval:    7,
                       Module:  8
                     };

66 67 68 69
    // Types of exceptions that can be broken upon.
    this.ExceptionBreak = { Caught : 0,
                            Uncaught: 1 };

70 71 72 73 74 75 76
    // The different types of breakpoint position alignments.
    // Must match BreakPositionAlignment in debug.h.
    this.BreakPositionAlignment = {
      Statement: 0,
      BreakPosition: 1
    };

77 78 79 80 81
    // The different script break point types.
    this.ScriptBreakPointType = { ScriptId: 0,
                                  ScriptName: 1,
                                  ScriptRegExp: 2 };

82 83 84
    // Store the current script id so we can skip corresponding break events.
    this.thisScriptId = %FunctionGetScriptId(receive);

85 86 87
    // Stores all set breakpoints.
    this.breakpoints = new Set();

88 89 90 91 92
    // Register as the active wrapper.
    assertTrue(activeWrapper === undefined);
    activeWrapper = this;
  }

93 94 95 96 97 98 99 100 101
  enable() { this.sendMessageForMethodChecked("Debugger.enable"); }
  disable() { this.sendMessageForMethodChecked("Debugger.disable"); }

  setListener(listener) { this.listener = listener; }

  stepOver() { this.sendMessageForMethodChecked("Debugger.stepOver"); }
  stepInto() { this.sendMessageForMethodChecked("Debugger.stepInto"); }
  stepOut() { this.sendMessageForMethodChecked("Debugger.stepOut"); }

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
  setBreakOnException()  {
    this.sendMessageForMethodChecked(
        "Debugger.setPauseOnExceptions", { state : "all" });
  }

  clearBreakOnException()  {
    const newState = this.isBreakOnUncaughtException() ? "uncaught" : "none";
    this.sendMessageForMethodChecked(
        "Debugger.setPauseOnExceptions", { state : newState });
  }

  isBreakOnException() {
    return !!%IsBreakOnException(this.ExceptionBreak.Caught);
  };

  setBreakOnUncaughtException()  {
    const newState = this.isBreakOnException() ? "all" : "uncaught";
    this.sendMessageForMethodChecked(
        "Debugger.setPauseOnExceptions", { state : newState });
  }

  clearBreakOnUncaughtException()  {
    const newState = this.isBreakOnException() ? "all" : "none";
    this.sendMessageForMethodChecked(
        "Debugger.setPauseOnExceptions", { state : newState });
  }

  isBreakOnUncaughtException() {
    return !!%IsBreakOnException(this.ExceptionBreak.Uncaught);
  };

  clearStepping() { %ClearStepping(); };

135 136 137 138 139 140 141 142 143 144 145
  // Returns the resulting breakpoint id.
  setBreakPoint(func, opt_line, opt_column, opt_condition) {
    assertTrue(%IsFunction(func));
    assertFalse(%FunctionIsAPIFunction(func));

    const scriptid = %FunctionGetScriptId(func);
    assertTrue(scriptid != -1);

    const offset = %FunctionGetScriptSourcePosition(func);
    const loc =
      %ScriptLocationFromLine2(scriptid, opt_line, opt_column, offset);
146
    return this.setBreakPointAtLocation(scriptid, loc, opt_condition);
147 148 149 150 151 152 153 154 155 156 157
  }

  setScriptBreakPoint(type, scriptid, opt_line, opt_column, opt_condition) {
    // Only sets by script id are supported for now.
    assertEquals(this.ScriptBreakPointType.ScriptId, type);
    return this.setScriptBreakPointById(scriptid, opt_line, opt_column,
                                        opt_condition);
  }

  setScriptBreakPointById(scriptid, opt_line, opt_column, opt_condition) {
    const loc = %ScriptLocationFromLine2(scriptid, opt_line, opt_column, 0);
158
    return this.setBreakPointAtLocation(scriptid, loc, opt_condition);
159 160
  }

161 162 163 164 165 166 167 168
  setBreakPointByScriptIdAndPosition(scriptid, position) {
    const loc = %ScriptPositionInfo2(scriptid, position, false);
    return this.setBreakPointAtLocation(scriptid, loc, undefined);
  }

  clearBreakPoint(breakpoint) {
    assertTrue(this.breakpoints.has(breakpoint));
    const breakid = breakpoint.id;
169 170
    const {msgid, msg} = this.createMessage(
        "Debugger.removeBreakpoint", { breakpointId : breakid });
171
    this.sendMessage(msg);
172
    this.takeReplyChecked(msgid);
173 174 175 176
    this.breakpoints.delete(breakid);
  }

  clearAllBreakPoints() {
177 178
    for (let breakpoint of this.breakpoints) {
      this.clearBreakPoint(breakpoint);
179 180
    }
    this.breakpoints.clear();
181 182
  }

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
  showBreakPoints(f, opt_position_alignment) {
    if (!%IsFunction(f)) throw new Error("Not passed a Function");

    const source = %FunctionGetSourceCode(f);
    const offset = %FunctionGetScriptSourcePosition(f);
    const position_alignment = opt_position_alignment === undefined
        ? this.BreakPositionAlignment.Statement : opt_position_alignment;
    const locations = %GetBreakLocations(f, position_alignment);

    if (!locations) return source;

    locations.sort(function(x, y) { return x - y; });

    let result = "";
    let prev_pos = 0;
    let pos;

    for (var i = 0; i < locations.length; i++) {
      pos = locations[i] - offset;
      result += source.slice(prev_pos, pos);
      result += "[B" + i + "]";
      prev_pos = pos;
    }

    pos = source.length;
    result += source.substring(prev_pos, pos);

    return result;
  }

  debuggerFlags() {
    return { breakPointsActive :
                { setValue : (enabled) => this.setBreakPointsActive(enabled) }
           };
  }

  scripts() {
    // Collect all scripts in the heap.
    return %DebugGetLoadedScripts();
  }

  // Returns a Script object. If the parameter is a function the return value
225 226 227 228
  // is the script in which the function is defined. If the parameter is a
  // string the return value is the script for which the script name has that
  // string value.  If it is a regexp and there is a unique script whose name
  // matches we return that, otherwise undefined.
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
  findScript(func_or_script_name) {
    if (%IsFunction(func_or_script_name)) {
      return %FunctionGetScript(func_or_script_name);
    } else if (%IsRegExp(func_or_script_name)) {
      var scripts = this.scripts();
      var last_result = null;
      var result_count = 0;
      for (var i in scripts) {
        var script = scripts[i];
        if (func_or_script_name.test(script.name)) {
          last_result = script;
          result_count++;
        }
      }
      // Return the unique script matching the regexp.  If there are more
      // than one we don't return a value since there is no good way to
      // decide which one to return.  Returning a "random" one, say the
      // first, would introduce nondeterminism (or something close to it)
      // because the order is the heap iteration order.
      if (result_count == 1) {
        return last_result;
      } else {
        return undefined;
      }
    } else {
      return %GetScript(func_or_script_name);
    }
  }

258 259 260 261 262 263 264 265
  // Returns the script source. If the parameter is a function the return value
  // is the script source for the script in which the function is defined. If the
  // parameter is a string the return value is the script for which the script
  // name has that string value.
  scriptSource(func_or_script_name) {
    return this.findScript(func_or_script_name).source;
  };

266 267 268 269 270
  sourcePosition(f) {
    if (!%IsFunction(f)) throw new Error("Not passed a Function");
    return %FunctionGetScriptSourcePosition(f);
  };

271 272 273 274 275 276 277 278 279 280 281 282 283
  // Returns the character position in a script based on a line number and an
  // optional position within that line.
  findScriptSourcePosition(script, opt_line, opt_column) {
    var location = %ScriptLocationFromLine(script, opt_line, opt_column, 0);
    return location ? location.position : null;
  };

  findFunctionSourceLocation(func, opt_line, opt_column) {
    var script = %FunctionGetScript(func);
    var script_offset = %FunctionGetScriptSourcePosition(func);
    return %ScriptLocationFromLine(script, opt_line, opt_column, script_offset);
  }

284
  setBreakPointsActive(enabled) {
285
    const {msgid, msg} = this.createMessage(
286
        "Debugger.setBreakpointsActive", { active : enabled });
287
    this.sendMessage(msg);
288
    this.takeReplyChecked(msgid);
289 290
  }

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
  generatorScopeCount(gen) {
    return %GetGeneratorScopeCount(gen);
  }

  generatorScope(gen, index) {
    // These indexes correspond definitions in debug-scopes.h.
    const kScopeDetailsTypeIndex = 0;
    const kScopeDetailsObjectIndex = 1;

    const details = %GetGeneratorScopeDetails(gen, index);

    function scopeObjectProperties() {
      const obj = details[kScopeDetailsObjectIndex];
      return Object.keys(obj).map((k, v) => v);
    }

    function setScopeVariableValue(name, value) {
      const res = %SetScopeVariableValue(gen, null, null, index, name, value);
      if (!res) throw new Error("Failed to set variable value");
    }

    const scopeObject =
        { value : () => details[kScopeDetailsObjectIndex],
          property : (prop) => details[kScopeDetailsObjectIndex][prop],
          properties : scopeObjectProperties,
          propertyNames : () => Object.keys(details[kScopeDetailsObjectIndex])
              .map((key, _) => key),
        };
    return { scopeType : () => details[kScopeDetailsTypeIndex],
             scopeIndex : () => index,
             scopeObject : () => scopeObject,
             setVariableValue : setScopeVariableValue,
           }
  }

  generatorScopes(gen) {
    const count = %GetGeneratorScopeCount(gen);
    const scopes = [];
    for (let i = 0; i < count; i++) {
      scopes.push(this.generatorScope(gen, i));
    }
    return scopes;
  }

335 336 337 338 339
  get LiveEdit() {
    const debugContext = %GetDebugContext();
    return debugContext.Debug.LiveEdit;
  }

340 341 342 343 344 345 346 347 348 349 350 351 352
  // --- Internal methods. -----------------------------------------------------

  getNextMessageId() {
    return this.nextMessageId++;
  }

  createMessage(method, params) {
    const id = this.getNextMessageId();
    const msg = JSON.stringify({
      id: id,
      method: method,
      params: params,
    });
353
    return { msgid : id, msg: msg };
354 355 356 357
  }

  receiveMessage(message) {
    const parsedMessage = JSON.parse(message);
358 359 360
    if (printProtocolMessages) {
      print(JSON.stringify(parsedMessage, undefined, 1));
    }
361
    if (parsedMessage.id !== undefined) {
362
      this.receivedMessages.set(parsedMessage.id, parsedMessage);
363 364 365 366 367 368 369 370 371 372
    }

    this.dispatchMessage(parsedMessage);
  }

  sendMessage(message) {
    if (printProtocolMessages) print(message);
    send(message);
  }

373 374
  sendMessageForMethodChecked(method, params) {
    const {msgid, msg} = this.createMessage(method, params);
375
    this.sendMessage(msg);
376 377 378 379 380 381 382 383 384 385
    this.takeReplyChecked(msgid);
  }

  takeReplyChecked(msgid) {
    const reply = this.receivedMessages.get(msgid);
    assertTrue(reply !== undefined);
    this.receivedMessages.delete(msgid);
    return reply;
  }

386 387 388 389 390 391 392 393 394 395 396 397 398
  setBreakPointAtLocation(scriptid, loc, opt_condition) {
    const params = { location :
                       { scriptId : scriptid.toString(),
                         lineNumber : loc.line,
                         columnNumber : loc.column,
                       },
                     condition : opt_condition,
                   };

    const {msgid, msg} = this.createMessage("Debugger.setBreakpoint", params);
    this.sendMessage(msg);

    const reply = this.takeReplyChecked(msgid);
399 400 401
    const result = reply.result;
    assertTrue(result !== undefined);
    const breakid = result.breakpointId;
402 403
    assertTrue(breakid !== undefined);

404 405 406
    const actualLoc = %ScriptLocationFromLine2(scriptid,
        result.actualLocation.lineNumber, result.actualLocation.columnNumber,
        0);
407

408 409 410 411 412 413
    const breakpoint = { id : result.breakpointId,
                         actual_position : actualLoc.position,
                       }

    this.breakpoints.add(breakpoint);
    return breakpoint;
414 415
  }

416 417 418 419 420
  execStatePrepareStep(action) {
    switch(action) {
      case this.StepAction.StepOut: this.stepOut(); break;
      case this.StepAction.StepNext: this.stepOver(); break;
      case this.StepAction.StepIn: this.stepInto(); break;
421
      case this.StepAction.StepFrame: %PrepareStepFrame(); break;
422 423 424 425
      default: %AbortJS("Unsupported StepAction"); break;
    }
  }

426 427 428 429 430 431 432 433 434
  execStateScopeType(type) {
    switch (type) {
      case "global": return this.ScopeType.Global;
      case "local": return this.ScopeType.Local;
      case "with": return this.ScopeType.With;
      case "closure": return this.ScopeType.Closure;
      case "catch": return this.ScopeType.Catch;
      case "block": return this.ScopeType.Block;
      case "script": return this.ScopeType.Script;
435
      case "eval": return this.ScopeType.Eval;
436
      case "module": return this.ScopeType.Module;
437 438 439 440
      default: %AbortJS("Unexpected scope type");
    }
  }

441 442 443 444 445 446 447 448 449 450
  execStateScopeObjectProperty(serialized_scope, prop) {
    let found = null;
    for (let i = 0; i < serialized_scope.length; i++) {
      const elem = serialized_scope[i];
      if (elem.name == prop) {
        found = elem;
        break;
      }
    }

451
    if (found == null) return { isUndefined : () => true };
452 453

    const val = { value : () => found.value.value };
454 455
    // Not undefined in the sense that we did find a property, even though
    // the value can be 'undefined'.
456
    return { value : () => val,
457
             isUndefined : () => false,
458 459 460
           };
  }

461 462 463 464
  // Returns an array of property descriptors of the scope object.
  // This is in contrast to the original API, which simply passed object
  // mirrors.
  execStateScopeObject(obj) {
465
    const serialized_scope = this.getProperties(obj.objectId);
466 467 468
    const scope = this.propertiesToObject(serialized_scope);
    return { value : () => scope,
             property : (prop) =>
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
                 this.execStateScopeObjectProperty(serialized_scope, prop),
             properties : () => serialized_scope.map(elem => elem.value),
             propertyNames : () => serialized_scope.map(elem => elem.name)
           };
  }

  execStateScopeDetails(scope) {
    var start_position;
    var end_position
    const start = scope.startLocation;
    const end = scope.endLocation;
    if (start) {
      start_position = %ScriptLocationFromLine2(
          parseInt(start.scriptId), start.lineNumber, start.columnNumber, 0)
          .position;
    }
    if (end) {
      end_position = %ScriptLocationFromLine2(
          parseInt(end.scriptId), end.lineNumber, end.columnNumber, 0)
          .position;
    }
    return { name : () => scope.name,
             startPosition : () => start_position,
             endPosition : () => end_position
493 494 495 496 497 498 499 500 501 502 503 504 505
           };
  }

  setVariableValue(frame, scope_index, name, value) {
    const frameid = frame.callFrameId;
    const {msgid, msg} = this.createMessage(
        "Debugger.setVariableValue",
        { callFrameId : frameid,
          scopeNumber : scope_index,
          variableName : name,
          newValue : { value : value }
        });
    this.sendMessage(msg);
506 507 508 509
    const reply = this.takeReplyChecked(msgid);
    if (reply.error) {
      throw new Error("Failed to set variable value");
    }
510 511 512 513 514
  }

  execStateScope(frame, scope_index) {
    const scope = frame.scopeChain[scope_index];
    return { scopeType : () => this.execStateScopeType(scope.type),
515 516
             scopeIndex : () => scope_index,
             frameIndex : () => frame.callFrameId,
517 518 519
             scopeObject : () => this.execStateScopeObject(scope.object),
             setVariableValue :
                (name, value) => this.setVariableValue(frame, scope_index,
520 521
                                                       name, value),
             details : () => this.execStateScopeDetails(scope)
522 523 524 525 526 527 528 529
           };
  }

  // Takes a list of properties as produced by getProperties and turns them
  // into an object.
  propertiesToObject(props) {
    const obj = {}
    props.forEach((elem) => {
530 531 532 533 534 535 536 537 538 539 540
      const key = elem.name;

      let value;
      if (elem.value) {
        // Some properties (e.g. with getters/setters) don't have a value.
        switch (elem.value.type) {
          case "undefined": value = undefined; break;
          default: value = elem.value.value; break;
        }
      }

541
      obj[key] = value;
542 543
    })

544
    return obj;
545 546
  }

547 548
  getProperties(objectId) {
    const {msgid, msg} = this.createMessage(
549
        "Runtime.getProperties", { objectId : objectId, ownProperties: true });
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
    this.sendMessage(msg);
    const reply = this.takeReplyChecked(msgid);
    return reply.result.result;
  }

  getLocalScopeDetails(frame) {
    const scopes = frame.scopeChain;
    for (let i = 0; i < scopes.length; i++) {
      const scope = scopes[i]
      if (scope.type == "local") {
        return this.getProperties(scope.object.objectId);
      }
    }

    return undefined;
  }

  execStateFrameLocalCount(frame) {
    const scope_details = this.getLocalScopeDetails(frame);
    return scope_details ? scope_details.length : 0;
  }

  execStateFrameLocalName(frame, index) {
    const scope_details = this.getLocalScopeDetails(frame);
    if (index < 0 || index >= scope_details.length) return undefined;
    return scope_details[index].name;
  }

  execStateFrameLocalValue(frame, index) {
    const scope_details = this.getLocalScopeDetails(frame);
    if (index < 0 || index >= scope_details.length) return undefined;

    const local = scope_details[index];

    let localValue;
    switch (local.value.type) {
      case "undefined": localValue = undefined; break;
      default: localValue = local.value.value; break;
    }

    return { value : () => localValue };
  }

593 594 595 596 597 598 599 600
  reconstructValue(objectId) {
    const {msgid, msg} = this.createMessage(
        "Runtime.getProperties", { objectId : objectId, ownProperties: true });
    this.sendMessage(msg);
    const reply = this.takeReplyChecked(msgid);
    return Object(reply.result.internalProperties[0].value.value);
  }

601 602
  reconstructRemoteObject(obj) {
    let value = obj.value;
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
    let isUndefined = false;

    switch (obj.type) {
      case "object": {
        switch (obj.subtype) {
          case "error": {
            const desc = obj.description;
            switch (obj.className) {
              case "EvalError": throw new EvalError(desc);
              case "RangeError": throw new RangeError(desc);
              case "ReferenceError": throw new ReferenceError(desc);
              case "SyntaxError": throw new SyntaxError(desc);
              case "TypeError": throw new TypeError(desc);
              case "URIError": throw new URIError(desc);
              default: throw new Error(desc);
            }
            break;
          }
          case "array": {
            const array = [];
            const props = this.propertiesToObject(
                this.getProperties(obj.objectId));
            for (let i = 0; i < props.length; i++) {
              array[i] = props[i];
            }
            value = array;
            break;
          }
          case "null": {
            value = null;
            break;
          }
          default: {
636 637 638 639 640 641 642 643 644 645 646 647 648 649
            switch (obj.className) {
              case "global":
                value = Function('return this')();
                break;
              case "Number":
              case "String":
              case "Boolean":
                value = this.reconstructValue(obj.objectId);
                break;
              default:
                value = this.propertiesToObject(
                    this.getProperties(obj.objectId));
                break;
            }
650 651
            break;
          }
652
        }
653 654 655 656 657 658 659
        break;
      }
      case "undefined": {
        value = undefined;
        isUndefined = true;
        break;
      }
660 661 662 663 664 665
      case "number": {
        if (obj.description === "NaN") {
          value = NaN;
        }
        break;
      }
666 667 668 669 670 671
      case "string":
      case "boolean": {
        break;
      }
      default: {
        break;
672 673 674 675
      }
    }

    return { value : () => value,
676 677 678
             isUndefined : () => isUndefined,
             type : () => obj.type,
             className : () => obj.className
679 680 681 682
           };
  }

  evaluateOnCallFrame(frame, expr) {
683 684 685 686 687 688 689 690 691 692
    const frameid = frame.callFrameId;
    const {msgid, msg} = this.createMessage(
        "Debugger.evaluateOnCallFrame",
        { callFrameId : frameid,
          expression : expr
        });
    this.sendMessage(msg);
    const reply = this.takeReplyChecked(msgid);

    const result = reply.result.result;
693
    return this.reconstructRemoteObject(result);
694 695
  }

696 697 698 699 700 701 702 703
  frameReceiver(frame) {
    return this.reconstructRemoteObject(frame.this);
  }

  frameReturnValue(frame) {
    return this.reconstructRemoteObject(frame.returnValue);
  }

704 705 706 707 708 709 710 711
  execStateFrameRestart(frame) {
    const frameid = frame.callFrameId;
    const {msgid, msg} = this.createMessage(
        "Debugger.restartFrame", { callFrameId : frameid });
    this.sendMessage(msg);
    this.takeReplyChecked(msgid);
  }

712 713 714 715 716 717
  execStateFrame(frame) {
    const scriptid = parseInt(frame.location.scriptId);
    const line = frame.location.lineNumber;
    const column = frame.location.columnNumber;
    const loc = %ScriptLocationFromLine2(scriptid, line, column, 0);
    const func = { name : () => frame.functionName };
718
    const index = JSON.parse(frame.callFrameId).ordinal;
719 720 721 722 723 724 725

    function allScopes() {
      const scopes = [];
      for (let i = 0; i < frame.scopeChain.length; i++) {
        scopes.push(this.execStateScope(frame, i));
      }
      return scopes;
726
    }
727

728 729
    return { sourceColumn : () => column,
             sourceLine : () => line + 1,
730
             sourceLineText : () => loc.sourceText,
731
             sourcePosition : () => loc.position,
732
             evaluate : (expr) => this.evaluateOnCallFrame(frame, expr),
733 734
             functionName : () => frame.functionName,
             func : () => func,
735
             index : () => index,
736 737 738
             localCount : () => this.execStateFrameLocalCount(frame),
             localName : (ix) => this.execStateFrameLocalName(frame, ix),
             localValue: (ix) => this.execStateFrameLocalValue(frame, ix),
739
             receiver : () => this.frameReceiver(frame),
740
             restart : () => this.execStateFrameRestart(frame),
741
             returnValue : () => this.frameReturnValue(frame),
742
             scopeCount : () => frame.scopeChain.length,
743 744 745 746 747
             scope : (index) => this.execStateScope(frame, index),
             allScopes : allScopes.bind(this)
           };
  }

748 749 750 751 752 753 754 755 756 757
  execStateEvaluateGlobal(expr) {
    const {msgid, msg} = this.createMessage(
        "Runtime.evaluate", { expression : expr });
    this.sendMessage(msg);
    const reply = this.takeReplyChecked(msgid);

    const result = reply.result.result;
    return this.reconstructRemoteObject(result);
  }

758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
  eventDataException(params) {
    switch (params.data.type) {
      case "string": {
        return params.data.value;
      }
      case "object": {
        const props = this.getProperties(params.data.objectId);
        return this.propertiesToObject(props);
      }
      default: {
        return undefined;
      }
    }
  }

  eventDataScriptSource(id) {
    const {msgid, msg} = this.createMessage(
775
        "Debugger.getScriptSource", { scriptId : String(id) });
776 777 778 779 780 781 782 783 784 785 786 787 788
    this.sendMessage(msg);
    const reply = this.takeReplyChecked(msgid);
    return reply.result.scriptSource;
  }

  eventDataScriptSetSource(id, src) {
    const {msgid, msg} = this.createMessage(
        "Debugger.setScriptSource", { scriptId : id, scriptSource : src });
    this.sendMessage(msg);
    this.takeReplyChecked(msgid);
  }

  eventDataScript(params) {
789
    const id = parseInt(params.scriptId);
790 791 792 793
    const name = params.url ? params.url : undefined;

    return { id : () => id,
             name : () => name,
794
             source : () => this.eventDataScriptSource(params.scriptId),
795
             setSource : (src) => this.eventDataScriptSetSource(id, src)
796
           };
797 798
  }

799 800 801 802
  // --- Message handlers. -----------------------------------------------------

  dispatchMessage(message) {
    const method = message.method;
803 804 805
    if (method == "Debugger.paused") {
      this.handleDebuggerPaused(message);
    } else if (method == "Debugger.scriptParsed") {
806
      this.handleDebuggerScriptParsed(message);
807 808
    } else if (method == "Debugger.scriptFailedToParse") {
      this.handleDebuggerScriptFailedToParse(message);
809 810 811
    }
  }

812 813 814
  handleDebuggerPaused(message) {
    const params = message.params;

815 816 817 818 819 820 821 822 823 824 825 826
    var debugEvent;
    switch (params.reason) {
      case "exception":
      case "promiseRejection":
        debugEvent = this.DebugEvent.Exception;
        break;
      default:
        // TODO(jgruber): More granularity.
        debugEvent = this.DebugEvent.Break;
        break;
    }

827 828
    if (!params.callFrames[0]) return;

829 830 831
    // Skip break events in this file.
    if (params.callFrames[0].location.scriptId == this.thisScriptId) return;

832
    // TODO(jgruber): Arguments as needed.
833 834
    let execState = { frames : params.callFrames,
                      prepareStep : this.execStatePrepareStep.bind(this),
835 836
                      evaluateGlobal :
                        (expr) => this.execStateEvaluateGlobal(expr),
837 838 839 840 841
                      frame : (index) => this.execStateFrame(
                          index ? params.callFrames[index]
                                : params.callFrames[0]),
                      frameCount : () => params.callFrames.length
                    };
842

843
    let eventData = this.execStateFrame(params.callFrames[0]);
844 845
    if (debugEvent == this.DebugEvent.Exception) {
      eventData.uncaught = () => params.data.uncaught;
846
      eventData.exception = () => this.eventDataException(params);
847 848
    }

849
    this.invokeListener(debugEvent, execState, eventData);
850 851
  }

852 853
  handleDebuggerScriptParsed(message) {
    const params = message.params;
854
    let eventData = { scriptId : params.scriptId,
855
                      script : () => this.eventDataScript(params),
856
                      eventType : this.DebugEvent.AfterCompile
857 858 859 860
                    }

    // TODO(jgruber): Arguments as needed. Still completely missing exec_state,
    // and eventData used to contain the script mirror instead of its id.
861 862 863 864
    this.invokeListener(this.DebugEvent.AfterCompile, undefined, eventData,
                        undefined);
  }

865 866 867 868 869 870 871 872 873 874 875 876 877
  handleDebuggerScriptFailedToParse(message) {
    const params = message.params;
    let eventData = { scriptId : params.scriptId,
                      script : () => this.eventDataScript(params),
                      eventType : this.DebugEvent.CompileError
                    }

    // TODO(jgruber): Arguments as needed. Still completely missing exec_state,
    // and eventData used to contain the script mirror instead of its id.
    this.invokeListener(this.DebugEvent.CompileError, undefined, eventData,
                        undefined);
  }

878 879 880 881
  invokeListener(event, exec_state, event_data, data) {
    if (this.listener) {
      this.listener(event, exec_state, event_data, data);
    }
882 883
  }
}
884 885 886

// Simulate the debug object generated by --expose-debug-as debug.
var debug = { instance : undefined };
887

888 889 890 891 892 893 894
Object.defineProperty(debug, 'Debug', { get: function() {
  if (!debug.instance) {
    debug.instance = new DebugWrapper();
    debug.instance.enable();
  }
  return debug.instance;
}});
895 896 897 898 899

Object.defineProperty(debug, 'ScopeType', { get: function() {
  const instance = debug.Debug;
  return instance.ScopeType;
}});