Refactor travis testing

This commit is contained in:
2021-06-07 12:36:22 -06:00
commit 8fd76d9a49
34 changed files with 288 additions and 0 deletions

20
src/nat/BoolExpInterp.hx Normal file
View File

@@ -0,0 +1,20 @@
package nat;
import kiss.KissInterp;
import hscript.Parser;
import kiss.Prelude;
@:build(kiss.Kiss.build())
class BoolExpInterp extends KissInterp {
public function new() {
super();
}
override function resolve(id:String):Dynamic {
return try {
super.resolve(id);
} catch (e:Dynamic) {
false;
}
}
}