aboutsummaryrefslogtreecommitdiff
path: root/tests/quote
AgeCommit message (Collapse)AuthorFilesLines
2016-12-01Move old tests to old-tests/Boris Kolpackov3-80/+0
2016-06-18Port to MinGWKaren Arutyunov1-1/+1
2016-04-02Add attribute syntax infrastructureBoris Kolpackov1-1/+1
2016-03-28Adjust tests/quote now that we support escaping in double-quoted stringsBoris Kolpackov2-0/+5
2015-09-09For newline escaping, ignore whole thing instead of making it newlineBoris Kolpackov2-0/+20
To capture literal newline, use quoting.
2015-09-09Add support for evaluation contextBoris Kolpackov2-0/+16
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-09Reimplement double quote lexing to avoid "implied quote" trickBoris Kolpackov3-1/+8
2015-09-08Initial take on double quote supportBoris Kolpackov3-0/+32
Currently, $(foo)-style variable expansion is not supported.