Browse Source

repl: loadExpression: is now called evaluateExpression:

Manfred Kröhnert 11 years ago
parent
commit
c5b504e0f3
1 changed files with 1 additions and 1 deletions
  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