summaryrefslogtreecommitdiff
path: root/tests/examplefiles/c/numbers.c.output
blob: 06d48d916b7a3dedfcd2693510828b6b8b2a92e8 (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
'/*\n * Some Number Test\n */' Comment.Multiline
'\n'          Text.Whitespace

'\n'          Text.Whitespace

'int'         Keyword.Type
' '           Text.Whitespace
'i'           Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'24241424'    Literal.Number.Integer
';'           Punctuation
'\n'          Text.Whitespace

'float'       Keyword.Type
' '           Text.Whitespace
'f1'          Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'342423423.24234' Literal.Number.Float
';'           Punctuation
'\n'          Text.Whitespace

'float'       Keyword.Type
' '           Text.Whitespace
'f2'          Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'25235235.'   Literal.Number.Float
';'           Punctuation
'\n'          Text.Whitespace

'float'       Keyword.Type
' '           Text.Whitespace
'f3'          Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'.234234'     Literal.Number.Float
';'           Punctuation
'\n'          Text.Whitespace

'float'       Keyword.Type
' '           Text.Whitespace
'f4'          Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'234243e+34343' Literal.Number.Float
';'           Punctuation
'\n'          Text.Whitespace

'float'       Keyword.Type
' '           Text.Whitespace
'f5'          Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'24234e-234'  Literal.Number.Float
';'           Punctuation
'\n'          Text.Whitespace

'int'         Keyword.Type
' '           Text.Whitespace
'o'           Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'0234'        Literal.Number.Oct
';'           Punctuation
'\n'          Text.Whitespace

'int'         Keyword.Type
' '           Text.Whitespace
'h'           Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'0x2342'      Literal.Number.Hex
';'           Punctuation
'\n'          Text.Whitespace