Add implicit LString to number coercions.

This commit is contained in:
Ian Farmer
2007-07-22 06:20:14 +00:00
parent daf71ee672
commit ee5007e718
5 changed files with 48 additions and 13 deletions

View File

@@ -51,6 +51,10 @@ public class LuaJTest extends TestCase {
runTest( "boolean" );
}
public void testCoercions() throws IOException, InterruptedException {
runTest( "coercions" );
}
public void testCompare() throws IOException, InterruptedException {
runTest( "compare" );
}

View File

@@ -0,0 +1,5 @@
print("5.0"+3.1)
print(4+"7.5")
print(3.14*" 2.75")
print("-33"/"11")
print(-"-5")

BIN
src/test/res/coercions.luac Normal file

Binary file not shown.