summaryrefslogtreecommitdiffstats
path: root/tests/snippets/crystal/test_lib.txt
blob: 6f6f107c733c2ad62058c24af8f381df0156525f (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
---input---
@[Link("some")]
lib LibSome
@[CallConvention("X86_StdCall")]
fun foo="some.foo"(thing : Void*) : LibC::Int
end

---tokens---
'@['          Operator
'Link'        Name.Decorator
'('           Punctuation
'"'           Literal.String.Double
'some'        Literal.String.Double
'"'           Literal.String.Double
')'           Punctuation
']'           Operator
'\n'          Text.Whitespace

'lib'         Keyword
' '           Text.Whitespace
'LibSome'     Name.Namespace
'\n'          Text.Whitespace

'@['          Operator
'CallConvention' Name.Decorator
'('           Punctuation
'"'           Literal.String.Double
'X86_StdCall' Literal.String.Double
'"'           Literal.String.Double
')'           Punctuation
']'           Operator
'\n'          Text.Whitespace

'fun'         Keyword
' '           Text.Whitespace
'foo'         Name.Function
'='           Operator
'"'           Literal.String.Double
'some.foo'    Literal.String.Double
'"'           Literal.String.Double
'('           Punctuation
'thing'       Name
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'Void'        Name
'*'           Operator
')'           Punctuation
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'LibC'        Name
'::'          Operator
'Int'         Name
'\n'          Text.Whitespace

'end'         Keyword
'\n'          Text.Whitespace