diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-03-19 09:49:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-03-28 16:03:34 +0200 |
commit | bfbf2c9d3b2c79e0effa294c69d98b13154c0178 (patch) | |
tree | a6079a75131b3bfa74d2514cec73064846292826 /tests/pairs/buildfile | |
parent | cf59a5fa548cfa72ab0b56334afea5c031faf27b (diff) |
Change pairs semantics from separated to unseparated
Before we use to recognize 'x @ y' as a pair. Now it has to be written
unseparated, as 'x@y'. See tests/pairs for details on the new semantics.
Diffstat (limited to 'tests/pairs/buildfile')
-rw-r--r-- | tests/pairs/buildfile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/pairs/buildfile b/tests/pairs/buildfile new file mode 100644 index 0000000..3b55044 --- /dev/null +++ b/tests/pairs/buildfile @@ -0,0 +1,40 @@ +print foo@bar # foo@bar +print foo@{bar} # foo@bar +print {foo}@bar # foo@bar +print {foo@bar} # foo@bar +print {{foo}@{bar}} # foo@bar +print "{foo}@bar" # {foo}@bar + +print foo@ # foo@{} +print {foo}@ # foo@{} +print {foo}@{} # foo@{} +print {foo}@ {FOO}@ # foo@{} FOO@{} +v=foo@ +print $v # foo@{} + +print @bar # {}@bar +print @{bar} # {}@bar +print {}@{bar} # {}@bar +print @{BAR} @{bar} # {}@BAR {}@bar +v=@bar +print $v # {}@bar + +print @ # {}@{} +print @{} # {}@{} +print {}@ # {}@{} +print {}@{} # {}@{} +print {@} # {}@{} +v=@ +print $v # {}@{} + +print @ @ # {}@{} {}@{} +v=@ @ +print $v # {}@{} {}@{} + +print @{bar BAR} # {}@bar {}@BAR +print @{bar {BAR}} # {}@bar {}@BAR +print foo@{bar BAR} # foo@bar foo@BAR + +#print @@ # error: double pair separator + +./: |