Files
kiss/src/test/cases/KissInterp2TestCase.hx
Nat Quayle Nelson 2678a2f217
Some checks failed
CI / test (push) Failing after 15s
CI / test-core (14, ubuntu-latest, 3.x, py) (push) Failing after 44s
CI / test-core (14, ubuntu-latest, 3.x, interp) (push) Failing after 46s
CI / test-core (14, ubuntu-latest, 3.x, js) (push) Failing after 50s
CI / test-core (14, ubuntu-latest, 3.x, nodejs) (push) Failing after 56s
CI / test-core (14, ubuntu-latest, 3.x, cpp) (push) Failing after 51s
nth and dictGet in KissInterp2
2025-11-09 15:54:57 -06:00

40 lines
720 B
Haxe

package test.cases;
import utest.Test;
import utest.Assert;
import kiss.Prelude;
#if js
import js.lib.Promise;
#end
import utest.Async;
@:build(kiss.KissInterp2.build())
class Interp {}
@:build(kiss.Kiss.build())
class KissInterp2TestCase extends Test {
function testEvalGlobal() {
_testEvalGlobal();
}
function testIf() {
_testIf();
}
function testField() {
_testField();
}
function testCallMethod() {
_testCallMethod();
}
function testPrint() {
_testPrint();
}
function testMapExpression() {
_testMapExpression();
}
function testLet() {
_testLet();
}
function testNth() {
_testNth();
}
}