mmikeww

Results 128 comments of mmikeww

this could be the same as issue #14 simply ignore any initial `}` and `else` on a line and then do the conversion and then add them back

You lost the `*` in the first code in your post. It changed the text to italic But from https://www.autohotkey.com/docs/Variables.htm#Operators: > Dereference (*): `*Expression` assumes that Expression resolves to a...

Yes I believe it should be. If you want to take a crack at fixing that, feel free. Lol. Pull requests accepted!

The original way I did the testing framework was to use the Tests.ahk file But @dmtr99 added his new way of testing using the ah1 and ah2 files with the...

I saw your attempted fix in your branch, I added a comment there. The proper fix would be complicated, and that would be to check if the replacement is inside...

> (also moved some data to separate files as the core file is huge enough and converted into an easier2parse OrderedMap format) Do we really need the OrderedMap? A quick...

> > Do we really need the OrderedMap? A quick look and it doesn't seem to offer any real benefits. You could've just moved the strings to other files >...

> Well, the conversion is valid (in the case *0) Should we only convert this valid case then? > By the way, is it actually possible with this parser to...

Inside the custom func replacements themselves (that we've prefixed with `_` ), the whole line is not available, only the parameters that we parsed earlier which is passed in with...

> That is, can I know that the previous line was a control flow statement and it ended without {? I don't believe our parser can track that