-
After creating reflaxe transpille. f.e. haxe to moonscript, how i can just add it to main project as generator?
Another question, how to make reflaxe works as single file builder output? (standalone …
-
By default reflaxe creates separately objects into multiple files. It is possible to get information about imports and packages?
It is possible to create file metadata info to assembly anything from…
-
Classes with the same name but different packages will clash and only one of the classes will be compiled.
For example:
```haxe
// foo/Baz.hx
package foo;
class Baz { public function new() {} }…
-
So, i have the code. I need to transpile it to moonscript, what i get, that i have:
```
haxe.Log.trace(__moon__("string.sub({arg0}, {arg1},{arg1} + {arg2})", "hello wolrd", 2, 4), {["fileName"]…
-
make middle processor for all build target results to implement obfuskation, is it possible?
-
To add to the roundup todo list, use the following markdown format.
```
- [ ] optional description [link name](/link/to/item)
```
So it generates the following:
- [x] optional description [li…
skial updated
11 months ago
-
To add to the roundup todo list, use the following markdown format.
```
- [ ] optional description [link name](/link/to/item)
```
So it generates the following:
- [x] optional description [li…
-
To add to the roundup todo list, use the following markdown format.
```
- [ ] optional description [link name](/link/to/item)
```
So it generates the following:
- [x] optional description [li…
-
Building this code
```haxe
class Base {
public function new() {}
function overridden(a:String) {}
function dummy(optional:Int=null) {}
}
class Child extends Base {
override…
-
```haxe
package cxx.std.chrono;
import cxx.Auto;
@:cxxStd
@:cppStd
@:nativeName("steady_clock")
@:include("chrono",true)
@:valueType
extern class SteadyClock {
public static function…