MiranDMC

Results 60 comments of MiranDMC

That's how the is_truthy works now. In other languages there are more values treated as false (float NaN for example), but it is not always possible to tell what type...

Optimizing out unused branch is not so trivial, considering fact there can be label inside. Then there is no way to simply be sure the code inside is never used....

Imports should perhaps also support 'as' feature. It will solve problem with name collisions in multiple modules and local code, as well as give name to imitate namespaces by giving...

I do not like fact that addressing module with name depends on current working directory. As discussed before regarding other topics, currently working directory is global property shared between scripts....

So, you can not have two modules named "utils.s" in different locations?

I gave solution for runtime. Problem is that both compiler and running script are meant to localize same file, but of course game environment looks differently than development one. What...

I'm aware of that, and that was not the source of the problem. Switching tabs multiple times also did not corrected the problem in the script I wanted update settings...

Hmm, what will happen if same file is opened in multiple tabs?

Each source file should result in one mapping list (when **include** directive is used then there is multiple source files). Currently Sanny source info only includes main source file. Perhaps...

Currently **Include_Once** builds unique list of files used to build final code. This list could be saved in footer like: ``` 02 // number of items "main.txt" 00 // first...