JS backend: fixed String.split for the case when using regexp.

Added(overload) String.split with limit parameter.
This commit is contained in:
Zalim Bashorov
2013-08-06 17:24:48 +04:00
parent 0341d875a9
commit 9b09d5f6df
4 changed files with 46 additions and 5 deletions
@@ -80,4 +80,8 @@ public final class StringTest extends AbstractExpressionTest {
assertFalse(filePath + " should not contain toString calls", text.contains("toString"));
}
}
public void testStringSplit() throws Exception {
checkFooBoxIsOk();
}
}