Does RCParsing support making decisions based on the column number?
Consider an example language that supports multi-line strings:
description "This is a multi-line string.
The column number of the initial double-quote is remembered.
For each line that follows, up to that number of leading
spaces are trimmed";
☝️ is equivalent to the following:
This is a multi-line string.
The column number of the initial double-quote is remembered.
For each line that follows, up to that number of leading
spaces are trimmed
Another example:
is equivalent to Foo\nbar
Does
RCParsingsupport making decisions based on the column number?Consider an example language that supports multi-line strings:
☝️ is equivalent to the following:
Another example:
is equivalent to
Foo\nbar