Explorar el Código

repl: loadExpression: is now called evaluateExpression:

Manfred Kröhnert hace 12 años
padre
commit
c5b504e0f3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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