Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-03-28 | Adjust tests/quote now that we support escaping in double-quoted strings | Boris Kolpackov | 1 | -0/+1 | |
2015-09-09 | For newline escaping, ignore whole thing instead of making it newline | Boris Kolpackov | 1 | -0/+5 | |
To capture literal newline, use quoting. | |||||
2015-09-09 | Add support for evaluation context | Boris Kolpackov | 1 | -0/+6 | |
For now it acts as just the value mode that can be enabled anywhere variable expansion is supported, for example: (foo=bar): And the primary use currently is to enable/test quoted and indirect variable expansion: "foo bar" = FOO BAR print $"foo bar" # Invalid. print $("foo bar") # Yeah, baby. foo = FOO FOO = foo print $($foo) Not that you should do something like this... | |||||
2015-09-09 | Reimplement double quote lexing to avoid "implied quote" trick | Boris Kolpackov | 1 | -0/+3 | |
2015-09-08 | Initial take on double quote support | Boris Kolpackov | 1 | -0/+11 | |
Currently, $(foo)-style variable expansion is not supported. |