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 24e8df3 commit fbed533Copy full SHA for fbed533
src/JsPhpize/Parser/Parser.php
@@ -7,14 +7,14 @@
7
use JsPhpize\Lexer\Token;
8
use JsPhpize\Nodes\Assignation;
9
use JsPhpize\Nodes\Block;
10
-use JsPhpize\Nodes\Value;
11
use JsPhpize\Nodes\BracketsArray;
12
use JsPhpize\Nodes\Constant;
13
use JsPhpize\Nodes\Dyiade;
14
use JsPhpize\Nodes\FunctionCall;
15
use JsPhpize\Nodes\HooksArray;
16
use JsPhpize\Nodes\Main;
17
use JsPhpize\Nodes\Parenthesis;
+use JsPhpize\Nodes\Value;
18
use JsPhpize\Nodes\Variable;
19
20
class Parser
@@ -121,6 +121,7 @@ protected function parseParentheses()
121
if ($next && $next->is('lambda')) {
122
return $this->parseLambda($parentheses);
123
}
124
+
125
return $parentheses;
126
127
if ($expectComma) {
0 commit comments