Parcourir la source

Update AIContext >> isBlockSelector comment update

Nicolas Petton il y a 10 ans
Parent
commit
529de030a8
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      js/Compiler-Interpreter.js
  2. 1 1
      st/Compiler-Interpreter.st

+ 1 - 1
js/Compiler-Interpreter.js

@@ -544,7 +544,7 @@ $1=_st(self._selector())._isNil();
 return $1;
 }, function($ctx1) {$ctx1.fill(self,"isBlockContext",{},smalltalk.AIContext)})},
 args: [],
-source: "isBlockContext\x0a\x09\x22Block context have an outer context.\x22\x0a\x09\x0a\x09^ self selector isNil",
+source: "isBlockContext\x0a\x09\x22Block context have no selector.\x22\x0a\x09\x0a\x09^ self selector isNil",
 messageSends: ["isNil", "selector"],
 referencedClasses: []
 }),

+ 1 - 1
st/Compiler-Interpreter.st

@@ -284,7 +284,7 @@ setupInterpreter: anInterpreter
 !AIContext methodsFor: 'testing'!
 
 isBlockContext
-	"Block context have an outer context."
+	"Block context have no selector."
 	
 	^ self selector isNil
 ! !