We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4039451 commit 91010c0Copy full SHA for 91010c0
src/parser/scalar.js
@@ -58,11 +58,11 @@ module.exports = {
58
isDoubleQuote = text[0] === '"';
59
text = text.substring(1, text.length - 1);
60
}
61
+ this.next();
62
value = value(isDoubleQuote, this.resolve_special_chars(text));
63
if (isBinCast) {
64
value = ['cast', 'binary', value];
65
- this.next();
66
if (this.token === this.tok.T_DOUBLE_COLON) {
67
// https://github.com/php/php-src/blob/master/Zend/zend_language_parser.y#L1151
68
return this.read_static_getter(value);
0 commit comments