HaxeFoundation / format

Various files formats support for Haxe
131 stars 59 forks source link

[hl] support reading OMakeEnum #61

Open nadako opened 7 years ago

ncannasse commented 7 years ago

Uhm, it should be supported, are you sure you're not trying to read an old version of the bytecode?

nadako commented 7 years ago

I'm trying to read the following program compiled with latest Haxe:

class Main2 {
    static function main() {
        trace(haxe.ds.Option.Some(10));
    }
}