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

groupUseErrors.test « namespace « 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: 1f4204252b02c0176447effad9450ff26a78083f (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
Invalid group use syntax
-----
<?php
// Missing semicolon
use Foo\{Bar}
use Bar\{Foo};
-----
Syntax error, unexpected T_USE, expecting ';' from 4:1 to 4:3
array(
    0: Stmt_GroupUse(
        type: TYPE_UNKNOWN (0)
        prefix: Name(
            parts: array(
                0: Bar
            )
        )
        uses: array(
            0: Stmt_UseUse(
                type: TYPE_NORMAL (1)
                name: Name(
                    parts: array(
                        0: Foo
                    )
                )
                alias: Foo
            )
        )
    )
)
-----
<?php
// Missing NS separator
use Foo {Bar, Baz};
-----
Syntax error, unexpected '{', expecting ',' or ';' from 3:9 to 3:9
array(
    0: Expr_ConstFetch(
        name: Name(
            parts: array(
                0: Bar
            )
        )
    )
    1: Expr_ConstFetch(
        name: Name(
            parts: array(
                0: Baz
            )
        )
    )
)
-----
<?php
// Extra NS separator
use Foo\{\Bar};
-----
Syntax error, unexpected T_NS_SEPARATOR, expecting T_STRING or T_FUNCTION or T_CONST from 3:10 to 3:10
array(
    0: Expr_ConstFetch(
        name: Name_FullyQualified(
            parts: array(
                0: Bar
            )
        )
    )
)