blob: d5f332982f00b1548e984871e04aac2c0ed39126 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# file : libbuild2/build/script/lexer+second-token.test.testscript
# license : MIT; see accompanying LICENSE file
# Note: this mode auto-expires after each token.
#
test.arguments = second-token
: assign
:
$* <"=foo" >>EOO
=
'foo'
<newline>
EOO
: append
:
$* <"+= foo" >>EOO
+=
'foo'
<newline>
EOO
: prepend
:
$* <" =+ foo" >>EOO
=+
'foo'
<newline>
EOO
: assign-leading
:
$* <"foo=bar" >>EOO
'foo=bar'
<newline>
EOO
: append-leading
:
$* <"foo+= bar" >>EOO
'foo+='
'bar'
<newline>
EOO
: prepend-leading
:
$* <"foo =+bar" >>EOO
'foo'
'=+bar'
<newline>
EOO
|