mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Fixes #683 and #691 The lexer's raw mode for reading macro args already attempted to handle semicolons inside string literals, versus outside ones which start comments. This change reuses the same function for reading string literals in normal and raw modes, also handling: - Commas in strings versus between macro args - Character escapes - {Interpolations} and \1-\9 args inside vs. outside strings - Multi-line string literals Macro args now allow escaping '\', '"', and '\\'. A consistent model for expanding macro args and interpolations, within macro args, string literals, and normal context: - "{S}" should always equal the contents of S - "\1" should always act like quoting the value of \1
16 lines
229 B
Plaintext
16 lines
229 B
Plaintext
"""
|
|
Hello
|
|
world
|
|
The multi-line string can contain:
|
|
- "single quotes"
|
|
- ""double quotes""
|
|
- even escaped """triple""" """quotes"""
|
|
!
|
|
arg <">
|
|
arg (")
|
|
arg <"""multi-line
|
|
string argument""">
|
|
arg ("""multi-line
|
|
string argument""")
|
|
()
|