summaryrefslogtreecommitdiff
path: root/tests/lexers/applescript/example2.txt
blob: 5e94ba615891c474cb6fa70d6c0733350d0f88bf (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---input---
tell application "System Events"
    tell network preferences
        tell current location
            set aPPPoEService to a reference to (first service whose kind is 10)
            if exists aPPPoEService then
                connect aPPPoEService
            end if
        end tell
    end tell
end tell

---tokens---
'tell'        Keyword
' '           Text
'application' Name.Builtin
' '           Text
'"System Events"' Literal.String.Double
'\n    '      Text
'tell'        Keyword
' '           Text
'network'     Name.Variable
' '           Text
'preferences' Name.Variable
'\n        '  Text
'tell'        Keyword
' '           Text
'current'     Name.Variable
' '           Text
'location'    Name.Attribute
'\n            ' Text
'set'         Keyword
' '           Text
'aPPPoEService' Name.Variable
' '           Text
'to'          Keyword
' '           Text
'a'           Name.Variable
' '           Text
'reference to' Operator.Word
' '           Text
'('           Punctuation
'first'       Name.Builtin
' '           Text
'service'     Name.Variable
' '           Text
'whose'       Name.Builtin
' '           Text
'kind'        Name.Variable
' '           Text
'is'          Operator.Word
' '           Text
'10'          Literal.Number.Integer
')'           Punctuation
'\n            ' Text
'if'          Keyword
' '           Text
'exists'      Name.Builtin
' '           Text
'aPPPoEService' Name.Variable
' '           Text
'then'        Keyword
'\n                ' Text
'connect'     Name.Variable
' '           Text
'aPPPoEService' Name.Variable
'\n            ' Text
'end'         Keyword
' '           Text
'if'          Keyword
'\n        '  Text
'end'         Keyword
' '           Text
'tell'        Keyword
'\n    '      Text
'end'         Keyword
' '           Text
'tell'        Keyword
'\n'          Text

'end'         Keyword
' '           Text
'tell'        Keyword
'\n'          Text