Minor in JS backend: drop unnecessary inline annotations.

This commit is contained in:
Zalim Bashorov
2014-08-26 12:31:47 +04:00
parent 0fd1b5152a
commit 0c0d049de7
4 changed files with 11 additions and 11 deletions
@@ -8,11 +8,11 @@ public class Foo {
}
public inline fun Foo.fooImp(): String {
public fun Foo.fooImp(): String {
return "impl" + blah()
}
public inline fun Foo.fooExp(): String {
public fun Foo.fooExp(): String {
return "expl" + this.blah()
}
@@ -21,4 +21,4 @@ fun box(): Boolean {
if (a.fooImp() != "impl5") return false
if (a.fooExp() != "expl5") return false
return true;
}
}