ソースを参照

repl: loadExpression: is now called evaluateExpression:

Manfred Kröhnert 12 年 前
コミット
c5b504e0f3
1 ファイル変更1 行追加1 行削除
  1. 1 1
      repl/REPL.st

+ 1 - 1
repl/REPL.st

@@ -31,7 +31,7 @@ eval: buffer
 	| result |
 	buffer isEmpty ifFalse: [
 		self try: [
-			result := Compiler new loadExpression: buffer.
+			result := Compiler new evaluateExpression: buffer.
 			Transcript show: result]
 		catch: [:e |
 			e isSmalltalkError