Browse Source

removes unused method `ASTDebugger >> nextNode`

Nicolas Petton 10 years ago
parent
commit
af6fe77bc0
2 changed files with 0 additions and 22 deletions
  1. 0 18
      src/Compiler-Interpreter.js
  2. 0 4
      src/Compiler-Interpreter.st

+ 0 - 18
src/Compiler-Interpreter.js

@@ -1331,24 +1331,6 @@ referencedClasses: []
 }),
 globals.ASTDebugger);
 
-smalltalk.addMethod(
-smalltalk.method({
-selector: "nextNode",
-protocol: 'accessing',
-fn: function (){
-var self=this;
-return smalltalk.withContext(function($ctx1) { 
-var $1;
-$1=_st(self._interpreter())._nextNode();
-return $1;
-}, function($ctx1) {$ctx1.fill(self,"nextNode",{},globals.ASTDebugger)})},
-args: [],
-source: "nextNode\x0a\x09^ self interpreter nextNode",
-messageSends: ["nextNode", "interpreter"],
-referencedClasses: []
-}),
-globals.ASTDebugger);
-
 smalltalk.addMethod(
 smalltalk.method({
 selector: "node",

+ 0 - 4
src/Compiler-Interpreter.st

@@ -454,10 +454,6 @@ method
 	^ self context method
 !
 
-nextNode
-	^ self interpreter nextNode
-!
-
 node
 	^ self interpreter ifNotNil: [
 		self interpreter node ]