Welcome to mirror list, hosted at ThFree Co, Russian Federation.

name.test « class « stmt « parser « code « test « php-parser « nikic « vendor - github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 880da3a89b91a85f5f7647dfd424377a8af76a73 (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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
Invalid class name
-----
<?php class self {}
-----
Cannot use 'self' as class name as it is reserved from 1:13 to 1:16
array(
    0: Stmt_Class(
        flags: 0
        name: self
        extends: null
        implements: array(
        )
        stmts: array(
        )
    )
)
-----
<?php class PARENT {}
-----
Cannot use 'PARENT' as class name as it is reserved from 1:13 to 1:18
array(
    0: Stmt_Class(
        flags: 0
        name: PARENT
        extends: null
        implements: array(
        )
        stmts: array(
        )
    )
)
-----
<?php class static {}
-----
Syntax error, unexpected T_STATIC, expecting T_STRING from 1:13 to 1:18
array(
)
-----
<?php class A extends self {}
-----
Cannot use 'self' as class name as it is reserved from 1:23 to 1:26
array(
    0: Stmt_Class(
        flags: 0
        name: A
        extends: Name(
            parts: array(
                0: self
            )
        )
        implements: array(
        )
        stmts: array(
        )
    )
)
-----
<?php class A extends PARENT {}
-----
Cannot use 'PARENT' as class name as it is reserved from 1:23 to 1:28
array(
    0: Stmt_Class(
        flags: 0
        name: A
        extends: Name(
            parts: array(
                0: PARENT
            )
        )
        implements: array(
        )
        stmts: array(
        )
    )
)
-----
<?php class A extends static {}
-----
Syntax error, unexpected T_STATIC, expecting T_STRING or T_NAMESPACE or T_NS_SEPARATOR from 1:23 to 1:28
array(
)
-----
<?php class A implements self {}
-----
Cannot use 'self' as interface name as it is reserved from 1:26 to 1:29
array(
    0: Stmt_Class(
        flags: 0
        name: A
        extends: null
        implements: array(
            0: Name(
                parts: array(
                    0: self
                )
            )
        )
        stmts: array(
        )
    )
)
-----
<?php class A implements PARENT {}
-----
Cannot use 'PARENT' as interface name as it is reserved from 1:26 to 1:31
array(
    0: Stmt_Class(
        flags: 0
        name: A
        extends: null
        implements: array(
            0: Name(
                parts: array(
                    0: PARENT
                )
            )
        )
        stmts: array(
        )
    )
)
-----
<?php class A implements static {}
-----
Syntax error, unexpected T_STATIC, expecting T_STRING or T_NAMESPACE or T_NS_SEPARATOR from 1:26 to 1:31
array(
)
-----
<?php interface self {}
-----
Cannot use 'self' as class name as it is reserved from 1:17 to 1:20
array(
    0: Stmt_Interface(
        name: self
        extends: array(
        )
        stmts: array(
        )
    )
)
-----
<?php interface PARENT {}
-----
Cannot use 'PARENT' as class name as it is reserved from 1:17 to 1:22
array(
    0: Stmt_Interface(
        name: PARENT
        extends: array(
        )
        stmts: array(
        )
    )
)
-----
<?php interface static {}
-----
Syntax error, unexpected T_STATIC, expecting T_STRING from 1:17 to 1:22
array(
)
-----
<?php interface A extends self {}
-----
Cannot use 'self' as interface name as it is reserved from 1:27 to 1:30
array(
    0: Stmt_Interface(
        name: A
        extends: array(
            0: Name(
                parts: array(
                    0: self
                )
            )
        )
        stmts: array(
        )
    )
)
-----
<?php interface A extends PARENT {}
-----
Cannot use 'PARENT' as interface name as it is reserved from 1:27 to 1:32
array(
    0: Stmt_Interface(
        name: A
        extends: array(
            0: Name(
                parts: array(
                    0: PARENT
                )
            )
        )
        stmts: array(
        )
    )
)
-----
<?php interface A extends static {}
-----
Syntax error, unexpected T_STATIC, expecting T_STRING or T_NAMESPACE or T_NS_SEPARATOR from 1:27 to 1:32
array(
)