We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e0a01d commit 05b0eb3Copy full SHA for 05b0eb3
src/lexer/property.js
@@ -9,14 +9,17 @@ module.exports = {
9
if (ch === '-') {
10
ch = this.input();
11
if (ch === '>') {
12
+ // https://github.com/php/php-src/blob/master/Zend/zend_language_scanner.l#L1296
13
return this.tok.T_OBJECT_OPERATOR;
14
}
15
this.unput(1);
16
} else if (this.is_LABEL_START()) {
17
+ // https://github.com/php/php-src/blob/master/Zend/zend_language_scanner.l#L1300
18
this.consume_LABEL();
19
this.popState();
20
return this.tok.T_STRING;
21
22
+ // https://github.com/php/php-src/blob/master/Zend/zend_language_scanner.l#L1306
23
24
25
return false;
0 commit comments