Skip to content

Commit 8019e2f

Browse files
authoredFeb 19, 2021
PHP: Improved constant support for PHP 8.1 enums (#2770)
This improves the highlighting of PHP 8.1 enums and class constants.
1 parent b0a6ec8 commit 8019e2f

7 files changed

+124
-16
lines changed
 

‎components/prism-php.js

+15-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,18 @@
1212
pattern: /\b(?:false|true)\b/i,
1313
alias: 'boolean'
1414
},
15-
/\b[A-Z_][A-Z0-9_]*\b(?!\s*\()/,
15+
{
16+
pattern: /(::\s*)\b[a-z_]\w*\b(?!\s*\()/i,
17+
greedy: true,
18+
lookbehind: true,
19+
},
20+
{
21+
pattern: /(\b(?:case|const)\s+)\b[a-z_]\w*(?=\s*[;=])/i,
22+
greedy: true,
23+
lookbehind: true,
24+
},
1625
/\b(?:null)\b/i,
26+
/\b[A-Z_][A-Z0-9_]*\b(?!\s*\()/,
1727
];
1828
var number = /\b0b[01]+(?:_[01]+)*\b|\b0o[0-7]+(?:_[0-7]+)*\b|\b0x[\da-f]+(?:_[\da-f]+)*\b|(?:\b\d+(?:_\d+)*\.?(?:\d+(?:_\d+)*)?|\B\.\d+)(?:e[+-]?\d+)?/i;
1929
var operator = /<?=>|\?\?=?|\.{3}|\??->|[!=]=?=?|::|\*\*=?|--|\+\+|&&|\|\||<<|>>|[?~]|[/^|%*&<>.+-]=?/;
@@ -87,7 +97,10 @@
8797
},
8898
/\b(?:__halt_compiler|abstract|and|array|as|break|callable|case|catch|class|clone|const|continue|declare|default|die|do|echo|else|elseif|empty|enddeclare|endfor|endforeach|endif|endswitch|endwhile|enum|eval|exit|extends|final|finally|for|foreach|function|global|goto|if|implements|include|include_once|instanceof|insteadof|interface|isset|list|namespace|match|new|or|parent|print|private|protected|public|require|require_once|return|self|static|switch|throw|trait|try|unset|use|var|while|xor|yield)\b/i
8999
],
90-
'argument-name': /\b[a-z_]\w*(?=\s*:(?!:))/i,
100+
'argument-name': {
101+
pattern: /([(,]\s+)\b[a-z_]\w*(?=\s*:(?!:))/i,
102+
lookbehind: true
103+
},
91104
'class-name': [
92105
{
93106
pattern: /(\b(?:extends|implements|instanceof|new(?!\s+self|\s+static))\s+|\bcatch\s*\()\b[a-z_]\w*(?!\\)\b/i,

‎components/prism-php.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tests/languages/latte/html_feature.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
["tag", [["tag", [["punctuation", "<"], "a"]],
1616
["attr-name", ["href"]], ["attr-value", [["punctuation", "="], ["punctuation", "\""],
1717
["latte", [["ld", [["punctuation", "{"], ["tag", "link"]]],
18-
["php", [["argument-name", "Post"], ["punctuation", ":"], ["class-name", "show"], ["variable", "$post"], ["operator", "->"], ["property", "id"]]],
18+
["php", ["Post", ["punctuation", ":"], ["class-name", "show"], ["variable", "$post"], ["operator", "->"], ["property", "id"]]],
1919
["rd", [["punctuation", "}"]]]]],
2020
["punctuation", "\""]]], ["punctuation", ">"]]],
2121
["latte", [["ld", [["punctuation", "{"]]], ["php", [["variable", "$post"], ["operator", "->"], ["property", "title"]]], ["rd", [["punctuation", "}"]]]]],

‎tests/languages/latte/n-attr_feature.test

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
[
1010
["tag", [["tag", [["punctuation", "<"], "a"]],
1111
["n-attr", [["attr-name", "n:href"],
12-
["attr-value", [["punctuation", "="], ["punctuation", "\""], ["php", [["argument-name", "Post"], ["punctuation", ":"], ["class-name", "show"], ["variable", "$post"], ["operator", "->"], ["property", "id"]]], ["punctuation", "\""]]]]],
12+
["attr-value", [["punctuation", "="], ["punctuation", "\""], ["php", ["Post", ["punctuation", ":"], ["class-name", "show"], ["variable", "$post"], ["operator", "->"], ["property", "id"]]], ["punctuation", "\""]]]]],
1313
["punctuation", ">"]]],
1414
"link", ["tag", [["tag", [["punctuation", "</"], "a"]], ["punctuation", ">"]]],
1515

1616
["tag", [["tag", [["punctuation", "<"], "a"]],
1717
["n-attr", [["attr-name", "n:href"],
18-
["attr-value", [["punctuation", "="], ["punctuation", "\""], ["php", [["argument-name", "Post"], ["punctuation", ":"], ["class-name", "show"], ["variable", "$post"], ["operator", "->"], ["property", "id"]]], ["punctuation", "\""]]]]],
18+
["attr-value", [["punctuation", "="], ["punctuation", "\""], ["php", ["Post", ["punctuation", ":"], ["class-name", "show"], ["variable", "$post"], ["operator", "->"], ["property", "id"]]], ["punctuation", "\""]]]]],
1919
["punctuation", ">"]]],
2020
"link", ["tag", [["tag", [["punctuation", "</"], "a"]], ["punctuation", ">"]]],
2121

‎tests/languages/php/class-name_feature.test

-9
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ class Foo extends Bar implements Baz {}
2222

2323
class Foo extends \Package\Bar implements App\Baz {}
2424

25-
enum Foo implements Bar {}
26-
2725
----------------------------------------------------
2826

2927
[
@@ -196,13 +194,6 @@ enum Foo implements Bar {}
196194
"Baz"
197195
]],
198196
["punctuation", "{"],
199-
["punctuation", "}"],
200-
201-
["keyword", "enum"],
202-
["class-name-definition", "Foo"],
203-
["keyword", "implements"],
204-
["class-name", "Bar"],
205-
["punctuation", "{"],
206197
["punctuation", "}"]
207198
]
208199

‎tests/languages/php/constant_feature.test

+53-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ AZ
55
PRISM
66
FOOBAR_42
77

8+
class Foo{
9+
const BAR = 1;
10+
const baz = 2;
11+
}
12+
13+
Foo::BAR;
14+
Foo::baz;
15+
16+
17+
switch ($i) {
18+
case NULL:
19+
break;
20+
case X:
21+
break;
22+
}
23+
824
----------------------------------------------------
925

1026
[
@@ -13,7 +29,43 @@ FOOBAR_42
1329
["constant", "X"],
1430
["constant", "AZ"],
1531
["constant", "PRISM"],
16-
["constant", "FOOBAR_42"]
32+
["constant", "FOOBAR_42"],
33+
34+
["keyword", "class"],
35+
["class-name-definition", "Foo"],
36+
["punctuation", "{"],
37+
["keyword", "const"],
38+
["constant", "BAR"],
39+
["operator", "="],
40+
["number", "1"],
41+
["punctuation", ";"],
42+
["keyword", "const"],
43+
["constant", "baz"],
44+
["operator", "="],
45+
["number", "2"],
46+
["punctuation", ";"],
47+
["punctuation", "}"],
48+
49+
["class-name", "Foo"], ["operator", "::"], ["constant", "BAR"], ["punctuation", ";"],
50+
["class-name", "Foo"], ["operator", "::"], ["constant", "baz"], ["punctuation", ";"],
51+
52+
["keyword", "switch"],
53+
["punctuation", "("],
54+
["variable", "$i"],
55+
["punctuation", ")"],
56+
["punctuation", "{"],
57+
["keyword", "case"],
58+
["constant", "NULL"],
59+
["punctuation", ":"],
60+
["keyword", "break"],
61+
["punctuation", ";"],
62+
["keyword", "case"],
63+
["constant", "X"],
64+
["punctuation", ":"],
65+
["keyword", "break"],
66+
["punctuation", ";"],
67+
["punctuation", "}"]
68+
1769
]
1870

1971
----------------------------------------------------

‎tests/languages/php/enum_feature.test

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
enum Foo implements Bar {}
2+
3+
enum Suit {
4+
case Hearts;
5+
case Diamonds = 'D';
6+
}
7+
8+
$val = Suit::Diamonds;
9+
10+
Suit::Spades->name;
11+
12+
----------------------------------------------------
13+
14+
[
15+
["keyword", "enum"],
16+
["class-name-definition", "Foo"],
17+
["keyword", "implements"],
18+
["class-name", "Bar"],
19+
["punctuation", "{"],
20+
["punctuation", "}"],
21+
22+
["keyword", "enum"],
23+
["class-name-definition", "Suit"],
24+
["punctuation", "{"],
25+
["keyword", "case"],
26+
["constant", "Hearts"],
27+
["punctuation", ";"],
28+
["keyword", "case"],
29+
["constant", "Diamonds"],
30+
["operator", "="],
31+
["string", "'D'"],
32+
["punctuation", ";"],
33+
["punctuation", "}"],
34+
35+
["variable", "$val"],
36+
["operator", "="],
37+
["class-name", "Suit"],
38+
["operator", "::"],
39+
["constant", "Diamonds"],
40+
["punctuation", ";"],
41+
42+
["class-name", "Suit"],
43+
["operator", "::"],
44+
["constant", "Spades"],
45+
["operator", "->"],
46+
["property", "name"],
47+
["punctuation", ";"]
48+
]
49+
50+
----------------------------------------------------
51+
52+
Checks for enums.

0 commit comments

Comments
 (0)
Please sign in to comment.