Nicolas Petton пре 11 година
родитељ
комит
8b8479fedb
3 измењених фајлова са 0 додато и 48 уклоњено
  1. 0 19
      js/Compiler-Interpreter.deploy.js
  2. 0 24
      js/Compiler-Interpreter.js
  3. 0 5
      st/Compiler-Interpreter.st

+ 0 - 19
js/Compiler-Interpreter.deploy.js

@@ -2323,25 +2323,6 @@ return self}, function($ctx1) {$ctx1.fill(self,"visitVariableNode:",{aNode:aNode
 messageSends: ["ifTrue:", "isUnknownVar", "binding", "push:", "at:ifAbsent:", "value", "error:", "ifTrue:ifFalse:", "isInstanceVar", "instVarAt:", "receiver", "context", "localAt:"]}),
 smalltalk.Interpreter);
 
-smalltalk.addMethod(
-smalltalk.method({
-selector: "xxxDoIt",
-fn: function (){
-var self=this;
-return smalltalk.withContext(function($ctx1) { 
-var $2,$3,$1;
-$1=_st((function(){
-return smalltalk.withContext(function($ctx2) {
-$2=self;
-_st($2)._step();
-$3=_st($2)._yourself();
-return $3;
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._value();
-return $1;
-}, function($ctx1) {$ctx1.fill(self,"xxxDoIt",{},smalltalk.Interpreter)})},
-messageSends: ["value", "step", "yourself"]}),
-smalltalk.Interpreter);
-
 
 
 smalltalk.addMethod(

+ 0 - 24
js/Compiler-Interpreter.js

@@ -3065,30 +3065,6 @@ referencedClasses: []
 }),
 smalltalk.Interpreter);
 
-smalltalk.addMethod(
-smalltalk.method({
-selector: "xxxDoIt",
-category: 'xxxDoIt',
-fn: function (){
-var self=this;
-return smalltalk.withContext(function($ctx1) { 
-var $2,$3,$1;
-$1=_st((function(){
-return smalltalk.withContext(function($ctx2) {
-$2=self;
-_st($2)._step();
-$3=_st($2)._yourself();
-return $3;
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._value();
-return $1;
-}, function($ctx1) {$ctx1.fill(self,"xxxDoIt",{},smalltalk.Interpreter)})},
-args: [],
-source: "xxxDoIt ^[self step; yourself] value",
-messageSends: ["value", "step", "yourself"],
-referencedClasses: []
-}),
-smalltalk.Interpreter);
-
 
 
 smalltalk.addMethod(

+ 0 - 5
st/Compiler-Interpreter.st

@@ -1095,11 +1095,6 @@ visitVariableNode: aNode
 		ifFalse: [ self context localAt: aNode value ])
 ! !
 
-!Interpreter methodsFor: 'xxxDoIt'!
-
-xxxDoIt ^[self step; yourself] value
-! !
-
 !Node methodsFor: '*Compiler-Interpreter'!
 
 interpreter: anInterpreter continue: aBlock