소스 검색

Update AIContext >> isBlockSelector comment update

Nicolas Petton 10 년 전
부모
커밋
529de030a8
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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
 ! !