Revision f230a1cf deps/v8/src/mirror-debugger.js

View differences:

deps/v8/src/mirror-debugger.js
117 117
 * @returns {Mirror} the mirror reflects the undefined value
118 118
 */
119 119
function GetUndefinedMirror() {
120
  return MakeMirror(void 0);
120
  return MakeMirror(UNDEFINED);
121 121
}
122 122

  
123 123

  
......
482 482
 * @extends ValueMirror
483 483
 */
484 484
function UndefinedMirror() {
485
  %_CallFunction(this, UNDEFINED_TYPE, void 0, ValueMirror);
485
  %_CallFunction(this, UNDEFINED_TYPE, UNDEFINED, ValueMirror);
486 486
}
487 487
inherits(UndefinedMirror, ValueMirror);
488 488

  
......
957 957

  
958 958
FunctionMirror.prototype.scope = function(index) {
959 959
  if (this.resolved()) {
960
    return new ScopeMirror(void 0, this, index);
960
    return new ScopeMirror(UNDEFINED, this, index);
961 961
  }
962 962
};
963 963

  
......
1670 1670

  
1671 1671

  
1672 1672
FrameMirror.prototype.scope = function(index) {
1673
  return new ScopeMirror(this, void 0, index);
1673
  return new ScopeMirror(this, UNDEFINED, index);
1674 1674
};
1675 1675

  
1676 1676

  

Also available in: Unified diff