started compiling more of the kotlin library to JS; now testing the String methods in JS

This commit is contained in:
James Strachan
2012-06-19 07:23:42 -05:00
parent 33b5e46201
commit 071e276e08
18 changed files with 705 additions and 362 deletions
+12
View File
@@ -39,10 +39,22 @@
<target>
<mkdir dir="${basedir}/target/tests"/>
<copy todir="${basedir}/target/tests">
<!--
<fileset dir="${basedir}/../../stdlib/test/js">
<include name="**/*.kt"/>
<exclude name="**/*JVM.kt"/>
</fileset>
-->
<!--
<fileset dir="${basedir}/../../stdlib/test/dom">
<include name="**/*.kt"/>
<exclude name="**/DomBuilderTest.kt"/>
<exclude name="**/*JVM.kt"/>
</fileset>
-->
<fileset dir="${basedir}/../../stdlib/test">
<include name="StringTest.kt"/>
</fileset>
</copy>
</target>
</configuration>