blob: 2906d9991165e8eb5b340ca345aff183769fa43c (
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
|
---input---
* Example Easytrieve macro declaration. For an example on calling this
* macro, see example.ezt.
MACRO FILENAME PREFIX
&FILENAME.
&PREFIX.-LINE 1 80 A
&PREFIX.-KEY 1 8 A
---tokens---
'* Example Easytrieve macro declaration. For an example on calling this\n' Comment.Single
'* macro, see example.ezt.\n' Comment.Single
'MACRO' Keyword.Declaration
' ' Text.Whitespace
'FILENAME' Name.Function
' ' Text.Whitespace
'PREFIX' Name
'\n' Text.Whitespace
'&FILENAME.' Name.Variable
'\n' Text.Whitespace
'&PREFIX.' Name.Variable
'-' Operator
'LINE' Keyword.Reserved
' ' Operator
'1' Literal.Number.Integer
' ' Text.Whitespace
'80' Literal.Number.Integer
' ' Text.Whitespace
'A' Name
'\n' Text.Whitespace
'&PREFIX.' Name.Variable
'-' Operator
'KEY' Keyword.Reserved
' ' Operator
' ' Text.Whitespace
'1' Literal.Number.Integer
' ' Text.Whitespace
'8' Literal.Number.Integer
' ' Text.Whitespace
'A' Name
'\n' Text.Whitespace
|