aboutsummaryrefslogtreecommitdiff
path: root/tests/eval/test.out
AgeCommit message (Collapse)AuthorFilesLines
2016-12-01Move old tests to old-tests/Boris Kolpackov1-36/+0
2016-07-20Implement support for <, >, <=, >= in eval contextBoris Kolpackov1-0/+7
Now can write: if ($build.version > 30000)
2016-04-18Add support for using value attributes in eval contextBoris Kolpackov1-0/+9
For example: if ($x == [null]) Or: if ([uint64] 01 == [uint64] 1)
2016-01-21Add support for ==, != in eval contextBoris Kolpackov1-0/+16
2015-09-09Add support for evaluation contextBoris Kolpackov1-0/+4
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...