aboutsummaryrefslogtreecommitdiff
path: root/tests/lang/eval-okay-string.exp
AgeCommit message (Collapse)Author
2015-07-03Fix the parsing of "$"'s in strings.Guillaume Maudoux
2010-04-21* Update the expected test output (no longer an ATerm).Eelco Dolstra
2006-10-17* Fix the tests wrt the AST changes, i.e., Str(s) -> Str(s, []), andEelco Dolstra
the semantic changes.
2006-09-01* Allow "$" in strings as long as they are not followed by "{". (TooEelco Dolstra
bad flex doesn't have lexical restrictions, the current solution isn't quite right...)
2006-05-01* String interpolation. Expressions likeEelco Dolstra
"--with-freetype2-library=" + freetype + "/lib" can now be written as "--with-freetype2-library=${freetype}/lib" An arbitrary expression can be enclosed within ${...}, not just identifiers. * Escaping in string literals: \n, \r, \t interpreted as in C, any other character following \ is interpreted as-is. * Newlines are now allowed in string literals.
2006-05-01* Allow string concatenations involving derivations, e.g.,Eelco Dolstra
configureFlags = "--with-freetype2-library=" + freetype + "/lib";
2004-10-27* Remove ancient Fix tests.Eelco Dolstra
* Add automated Nix expression language tests.