Results 561 comments of Try

Application side, unfortunately is not aware of where compression been used. Is it possible to pretend, that compressed files are not in archive at all?

> If you can't handle the error in a try-catch, I recommend just not loading the VDF at all. Yes, that's good solution, that I'm happy with. We probably need...

For now added workaround for OpenGothic: checking vdf header: f22560e1 Assuming that union is always version `160` :)

> Done. Files are now more helpfully labeled. Just checked out new code. Apparently `LeGo.d` is gone, and maybe other library files.

I've added 2 more things for control flow. Basically need to develop a way to execute at loops: ``` repeat(i, 32) // ikarus-function. Here need to have a way to...

> Currently, it's not even possible to change the value of a const symbol Are you sure? At least in place, where exception been hit, there is access: ```c++ void...

> If you override repeat, then you'll get control at the address I need to think about it. So far not going smooth: `repeat` is still a function call, so...

Testing latest version of `phenix`. Apparently `phoenix::vm::init_instance` is broke, always throwing exception: ``` 1 libstdc++-6!.cxa_throw 2 std::__throw_bad_variant_access variant 1305 3 std::__throw_bad_variant_access variant 1313 4 std::get 5 std::get 6 phoenix::symbol::get_instance script.cc...

> As for my idea on how to implement repeat even without naked calls, see below: Hm, can't say that I like it: * Not clear how-to handle `break` and...

I've pushed prototype for loops support. `CONTINUE`, `BREAK` and `END` are tracked in VM (guarded by flag), assuming that it's more efficient than `virtual` functions based approach. Added `unsafe_jump` function...