Browse Source

Renamed ASTDebugger >> stepOver to #step

Nicolas Petton 11 years ago
parent
commit
3ea5b4cc79
3 changed files with 8 additions and 8 deletions
  1. 3 3
      js/Compiler-Interpreter.deploy.js
  2. 4 4
      js/Compiler-Interpreter.js
  3. 1 1
      st/Compiler-Interpreter.st

+ 3 - 3
js/Compiler-Interpreter.deploy.js

@@ -596,13 +596,13 @@ return self}, function($ctx1) {$ctx1.fill(self,"interpret:continue:",{aNode:aNod
 smalltalk.ASTDebugger);
 
 smalltalk.addMethod(
-"_stepOver",
+"_step",
 smalltalk.method({
-selector: "stepOver",
+selector: "step",
 fn: function (){
 var self=this;
 return smalltalk.withContext(function($ctx1) { 
_st(self["@continuation"])._value();
-return self}, function($ctx1) {$ctx1.fill(self,"stepOver",{}, smalltalk.ASTDebugger)})}
+return self}, function($ctx1) {$ctx1.fill(self,"step",{}, smalltalk.ASTDebugger)})}
 }),
 smalltalk.ASTDebugger);
 

+ 4 - 4
js/Compiler-Interpreter.js

@@ -794,16 +794,16 @@ referencedClasses: []
 smalltalk.ASTDebugger);
 
 smalltalk.addMethod(
-"_stepOver",
+"_step",
 smalltalk.method({
-selector: "stepOver",
+selector: "step",
 category: 'stepping',
 fn: function (){
 var self=this;
 return smalltalk.withContext(function($ctx1) { 
_st(self["@continuation"])._value();
-return self}, function($ctx1) {$ctx1.fill(self,"stepOver",{}, smalltalk.ASTDebugger)})},
+return self}, function($ctx1) {$ctx1.fill(self,"step",{}, smalltalk.ASTDebugger)})},
 args: [],
-source: "stepOver\x0a\x09continuation value",
+source: "step\x0a\x09continuation value",
 messageSends: ["value"],
 referencedClasses: []
 }),

+ 1 - 1
st/Compiler-Interpreter.st

@@ -317,7 +317,7 @@ interpret: aNode continue: aBlock
 
 !ASTDebugger methodsFor: 'stepping'!
 
-stepOver
+step
 	continuation value
 ! !