3 supported platforms
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -4,3 +4,5 @@ transcript.hlog
|
|||||||
validating.hlog
|
validating.hlog
|
||||||
js/hank.js
|
js/hank.js
|
||||||
cpp/
|
cpp/
|
||||||
|
out.n
|
||||||
|
test-output.txt
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Supported targets:
|
|||||||
|
|
||||||
* JavaScript
|
* JavaScript
|
||||||
* C++
|
* C++
|
||||||
|
* Neko
|
||||||
|
|
||||||
## Comparison with Ink and Inkjs
|
## Comparison with Ink and Inkjs
|
||||||
|
|
||||||
|
|||||||
@@ -123,7 +123,7 @@ class HInterface {
|
|||||||
var type1 = Std.string(Type.typeof(val));
|
var type1 = Std.string(Type.typeof(val));
|
||||||
var type2 = Std.string(Type.typeof(val2));
|
var type2 = Std.string(Type.typeof(val2));
|
||||||
//if (type1 != type2)
|
//if (type1 != type2)
|
||||||
trace('$val: $type1 became $val2: $type2');
|
//trace('$val: $type1 became $val2: $type2');
|
||||||
return val2;
|
return val2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,10 @@ class LogUtil {
|
|||||||
return "interp";
|
return "interp";
|
||||||
#end
|
#end
|
||||||
|
|
||||||
|
#if neko
|
||||||
|
return "neko";
|
||||||
|
#end
|
||||||
|
|
||||||
return "unknown";
|
return "unknown";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,4 +21,13 @@ hxml/internals.hxml
|
|||||||
-cpp cpp
|
-cpp cpp
|
||||||
-cmd cpp/Examples
|
-cmd cpp/Examples
|
||||||
hxml/examples.hxml
|
hxml/examples.hxml
|
||||||
--next
|
--next
|
||||||
|
|
||||||
|
-neko out.n
|
||||||
|
-cmd neko out.n
|
||||||
|
hxml/internals.hxml
|
||||||
|
--next
|
||||||
|
|
||||||
|
-neko out.n
|
||||||
|
-cmd neko out.n
|
||||||
|
hxml/examples.hxml
|
||||||
Reference in New Issue
Block a user