JS backend: fixed bug with the sourcemap generation when binary operation used as statement.

This commit is contained in:
Zalim Bashorov
2013-10-07 20:09:56 +04:00
parent d3b4e4eb1f
commit 0aa1d0265b
2 changed files with 21 additions and 7 deletions
@@ -0,0 +1,10 @@
package foo
fun box(): String {
1 * 2 / 3
var ok = ""
ok += "O" + "K"
return ok
}