File: test_objects.txt

package info (click to toggle)
pygments 2.19.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,668 kB
  • sloc: python: 105,287; javascript: 238; makefile: 142; sh: 84; lisp: 74
file content (134 lines) | stat: -rw-r--r-- 3,187 bytes parent folder | download
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
---input---
// An empty object
{}

// An object with two properties
// and a trailing comma
{
    width: 1920,
    height: 1080,
}

// Objects can be nested
{
    image: {
        width: 1920,
        height: 1080,
        'aspect-ratio': '16:9',
    }
}

// An array of objects
[
    { name: 'Joe', age: 27 },
    { name: 'Jane', age: 32 },
]

---tokens---
'// An empty object\n' Comment.Single

'{'           Punctuation
'}'           Punctuation
'\n\n'        Text.Whitespace

'// An object with two properties\n' Comment.Single

'// and a trailing comma\n' Comment.Single

'{'           Punctuation
'\n    '      Text.Whitespace
'width'       Name.Variable
':'           Punctuation
' '           Text.Whitespace
'1920'        Literal.Number.Float
','           Punctuation
'\n    '      Text.Whitespace
'height'      Name.Variable
':'           Punctuation
' '           Text.Whitespace
'1080'        Literal.Number.Float
','           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n\n'        Text.Whitespace

'// Objects can be nested\n' Comment.Single

'{'           Punctuation
'\n    '      Text.Whitespace
'image'       Name.Variable
':'           Punctuation
' '           Text.Whitespace
'{'           Punctuation
'\n        '  Text.Whitespace
'width'       Name.Variable
':'           Punctuation
' '           Text.Whitespace
'1920'        Literal.Number.Float
','           Punctuation
'\n        '  Text.Whitespace
'height'      Name.Variable
':'           Punctuation
' '           Text.Whitespace
'1080'        Literal.Number.Float
','           Punctuation
'\n        '  Text.Whitespace
"'"           Name.Variable
"aspect-ratio'" Name.Variable
':'           Punctuation
' '           Text.Whitespace
"'"           Literal.String
'16:9'        Literal.String
"'"           Literal.String
','           Punctuation
'\n    '      Text.Whitespace
'}'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n\n'        Text.Whitespace

'// An array of objects\n' Comment.Single

'['           Punctuation
'\n    '      Text.Whitespace
'{'           Punctuation
' '           Text.Whitespace
'name'        Name.Variable
':'           Punctuation
' '           Text.Whitespace
"'"           Literal.String
'Joe'         Literal.String
"'"           Literal.String
','           Punctuation
' '           Text.Whitespace
'age'         Name.Variable
':'           Punctuation
' '           Text.Whitespace
'27'          Literal.Number.Float
' '           Text.Whitespace
'}'           Punctuation
','           Punctuation
'\n    '      Text.Whitespace
'{'           Punctuation
' '           Text.Whitespace
'name'        Name.Variable
':'           Punctuation
' '           Text.Whitespace
"'"           Literal.String
'Jane'        Literal.String
"'"           Literal.String
','           Punctuation
' '           Text.Whitespace
'age'         Name.Variable
':'           Punctuation
' '           Text.Whitespace
'32'          Literal.Number.Float
' '           Text.Whitespace
'}'           Punctuation
','           Punctuation
'\n'          Text.Whitespace

']'           Punctuation
'\n'          Text.Whitespace