uxn/src
Erik Osheim abd6a3a5da Support nested comments in uxnasm.
Previously, code like this would fail with an error
about an unrecognized ) token:

    ( this is a ( nested ) comment )

With this patch, the above code will now work.

Relatedly, it was previously possible to write code
that compiled but was confusing:

    (open parenthesis should have a space )
    ( in this case the ADD2 will be ignored )ADD2
    ( this comment with ( would have been fine )

With this commit, the first example will emit a warning
but continue to work as intended. The second and third
examples will continue searching for a matching ) token,
which due to the new nested coment behavior will probably
mean the rest of the file gets commented out.
2021-12-28 19:28:15 -08:00
..
devices Fixed issue with screen resize 2021-12-28 17:22:40 -08:00
uxn-fast.c (readability) Use preincrements throughout in void context. 2021-12-14 23:17:32 +00:00
uxn.c uxn_eval: multiply as two uint32s to avoid UB 2021-12-25 23:29:36 +01:00
uxn.h uxn_eval: multiply as two uint32s to avoid UB 2021-12-25 23:29:36 +01:00
uxnasm.c Support nested comments in uxnasm. 2021-12-28 19:28:15 -08:00
uxncli.c Moved file APIs in device/file 2021-12-26 20:26:27 -08:00
uxnemu.c Do not check for erroring video twice 2021-12-28 17:38:55 -08:00