Bug 809002 - Stick the variables view exported symbols on 'this', r=past

This commit is contained in:
Victor Porof 2012-11-10 13:14:40 +02:00
Родитель 5846ee6516
Коммит 3e53317b54
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -9,7 +9,7 @@ const LAZY_EMPTY_DELAY = 150; // ms
Components.utils.import('resource://gre/modules/Services.jsm');
let EXPORTED_SYMBOLS = ["VariablesView", "create"];
this.EXPORTED_SYMBOLS = ["VariablesView", "create"];
/**
* A tree view for inspecting scopes, objects and properties.
@ -22,7 +22,7 @@ let EXPORTED_SYMBOLS = ["VariablesView", "create"];
* @param nsIDOMNode aParentNode
* The parent node to hold this view.
*/
function VariablesView(aParentNode) {
this.VariablesView = function VariablesView(aParentNode) {
this._store = new Map();
this._prevHierarchy = new Map();
this._currHierarchy = new Map();