This commit is contained in:
Andreas Gal 2014-07-24 00:48:21 -07:00
Родитель 5f1e87b04a
Коммит 3ae7496bd7
1 изменённых файлов: 1 добавлений и 7 удалений

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

@ -4,12 +4,6 @@
'use strict';
function Context(thread) {
this.frames = [];
this.thread = thread;
this.level = 0;
}
Context.prototype.invoke = function(methodInfo, args) {
++this.level;
VM.invoke(this, methodInfo, args);
--this.level;
}