diff options
| author | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-09 00:30:30 +0100 |
|---|---|---|
| committer | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-09 17:47:34 +0100 |
| commit | aeab306921dfe9af4b444a77bd46d1700e43dd88 (patch) | |
| tree | 88cd04a7ea49342fe76b586007cafd807921abc1 /src/lib.rs | |
| parent | c574e4f707b1a2e638407bb60bf51355371874d3 (diff) | |
| download | sylt-aeab306921dfe9af4b444a77bd46d1700e43dd88.tar.gz | |
fancy call syntax
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1046,6 +1046,14 @@ a.a <=> 0" ); test_multiple!( + fancy_call, + not: "f := fn {}\n f!\n", + one_arg: "f := fn a:int { a <=> 1 }\n f! 1\n", + two_arg: "f := fn a:int, b:int { b <=> 3 }\n f! 1, 1 + 2\n", + three_arg: "f := fn a:int, b:int, c:int { c <=> 13 }\n f! 1, 1 + 2, 1 + 4 * 3\n", + ); + + test_multiple!( newline_regression, simple: "a := 1 // blargh \na += 1 // blargh \n a <=> 2 // HARGH", expressions: "1 + 1 // blargh \n 2 // blargh \n // HARGH \n", |
