@@ 1095-1099 (lines=5) @@ | ||
1092 | return null; |
|
1093 | } |
|
1094 | ||
1095 | if ($this->lexer->isNextToken(Lexer::T_INPUT_PARAMETER)) { |
|
1096 | $this->match(Lexer::T_INPUT_PARAMETER); |
|
1097 | ||
1098 | return new AST\InputParameter($this->lexer->token['value']); |
|
1099 | } |
|
1100 | ||
1101 | return $this->ArithmeticExpression(); |
|
1102 | } |
|
@@ 2603-2607 (lines=5) @@ | ||
2600 | * @return mixed |
|
2601 | */ |
|
2602 | public function InstanceOfParameter() { |
|
2603 | if ($this->lexer->isNextToken(Lexer::T_INPUT_PARAMETER)) { |
|
2604 | $this->match(Lexer::T_INPUT_PARAMETER); |
|
2605 | ||
2606 | return new AST\InputParameter($this->lexer->token['value']); |
|
2607 | } |
|
2608 | ||
2609 | return $this->AliasIdentificationVariable(); |
|
2610 | } |