JS backend: added the support nativeInvoke, nativeGetter, nativeSetter.

This commit is contained in:
Zalim Bashorov
2014-11-24 18:25:08 +03:00
parent e6b69e48d9
commit b06096469a
8 changed files with 209 additions and 9 deletions
@@ -0,0 +1,95 @@
package foo
native("Object")
class JsObject {
nativeGetter
fun get(a: String): Any? = noImpl
nativeSetter
fun set(a: String, v: Any?): Unit = noImpl
nativeGetter
fun take(a: Int): Any? = noImpl
nativeSetter
fun put(a: Int, v: Any?): Unit = noImpl
}
nativeGetter
fun JsObject.get(a: Int): Any? = noImpl
nativeSetter
fun JsObject.set(a: Int, v: Any?): Unit = noImpl
nativeGetter
fun JsObject.take(a: String): Any? = noImpl
nativeSetter
fun JsObject.put(a: String, v: Any?): Unit = noImpl
object t{}
native
val undefined: Any = noImpl
native
fun getTestObject(): JsObject = noImpl
fun test(obj: JsObject, key: String, oldValue: Any, newValue: Any) {
assertEquals(oldValue, obj[key])
obj[key] = newValue
assertEquals(newValue, obj[key])
obj[key] = null
assertEquals(null, obj[key])
}
fun test(obj: JsObject, key: Int, oldValue: Any, newValue: Any) {
assertEquals(oldValue, obj.take(key))
obj.put(key, newValue)
assertEquals(newValue, obj.take(key))
obj.put(key, null)
assertEquals(null, obj.take(key))
}
fun testExtensions(obj: JsObject, key: Int, oldValue: Any, newValue: Any) {
assertEquals(oldValue, obj[key])
obj[key] = newValue
assertEquals(newValue, obj[key])
obj[key] = null
assertEquals(null, obj[key])
}
fun testExtensions(obj: JsObject, key: String, oldValue: Any, newValue: Any) {
assertEquals(oldValue, obj.take(key))
obj.put(key, newValue)
assertEquals(newValue, obj.take(key))
obj.put(key, null)
assertEquals(null, obj.take(key))
}
fun box(): String {
val a = getTestObject()
test(a, "foo", "boo", "moo")
test(a, "bar", 35, 67)
test(a, "baz", undefined, 34)
test(a, "qoox", undefined, t)
test(a, 0, "ok", "OK!")
test(a, 1, 2, 3)
test(a, 2, undefined, "HI")
test(a, 5, undefined, t)
val b = getTestObject()
testExtensions(b, "foo", "boo", "moo")
testExtensions(b, "bar", 35, 67)
testExtensions(b, "baz", undefined, 34)
testExtensions(b, "qoox", undefined, t)
testExtensions(b, 0, "ok", "OK!")
testExtensions(b, 1, 2, 3)
testExtensions(b, 2, undefined, "HI")
testExtensions(b, 5, undefined, t)
return "OK"
}
@@ -0,0 +1,38 @@
package foo
native
class Function(vararg argsAndCode: String) {
nativeInvoke
fun invoke(a: Any?): Any? = noImpl
nativeInvoke
fun baz(a: Any?, b: Any?): Any? = noImpl
}
nativeInvoke
fun Function.invoke(a: Any?, b: Any?): Any? = noImpl
nativeInvoke
fun Function.bar(a: Any?, b: Any?): Any? = noImpl
object t{}
fun box(): String {
val f = Function("a", "return a")
val g = Function("a", "b", "return a + b")
assertEquals(1, f(1))
assertEquals("ok", f("ok"))
assertEquals(t, f(t))
assertEquals(5, g(1, 4))
assertEquals("ok34", g("ok", 34))
assertEquals(5, g.baz(1, 4))
assertEquals("ok34", g.baz("ok", 34))
assertEquals(5, g.bar(1, 4))
assertEquals("ok34", g.bar("ok", 34))
return "OK"
}
@@ -0,0 +1,8 @@
function getTestObject() {
return {
"foo" : "boo",
"bar" : 35,
0 : "ok",
1 : 2
};
};