From 6a20eed594c346790b6da5da4be243dd581927d3 Mon Sep 17 00:00:00 2001 From: mihaylov Date: Sun, 8 Oct 2006 09:07:41 +0000 Subject: Moved scala.runtime.compat to scala.compat --- test/files/run/lisp.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/files/run/lisp.scala') diff --git a/test/files/run/lisp.scala b/test/files/run/lisp.scala index cb26972e2d..f12196ca50 100644 --- a/test/files/run/lisp.scala +++ b/test/files/run/lisp.scala @@ -240,7 +240,7 @@ object LispCaseClasses extends Lisp { if (token == "(") parseList else if (token == ")") error("unbalanced parentheses") else if ('0' <= token.charAt(0) && token.charAt(0) <= '9') - NUM(scala.runtime.compat.Platform.parseInt(token)) + NUM(compat.Platform.parseInt(token)) else if (token.charAt(0) == '\"' && token.charAt(token.length()-1)=='\"') STR(token.substring(1,token.length() - 1)) else SYM(token) @@ -432,8 +432,8 @@ object LispAny extends Lisp { if (token == "(") parseList else if (token == ")") error("unbalanced parentheses") //else if (Character.isDigit(token.charAt(0))) - else if (scala.runtime.compat.Platform.isDigit(token.charAt(0))) - scala.runtime.compat.Platform.parseInt(token) + else if (compat.Platform.isDigit(token.charAt(0))) + compat.Platform.parseInt(token) else if (token.charAt(0) == '\"' && token.charAt(token.length()-1)=='\"') token.substring(1,token.length() - 1) else Symbol(token) -- cgit v1.2.3