Created
March 7, 2017 16:14
-
-
Save guilhermeblanco/bcecb06b7cf99fab15ec5eafc31474b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// ... | |
// Validate SingleValuedPathExpression (ie.: "product") | |
if (isset($this->queryComponents[$lookaheadValue]['metadata'])) { | |
$expr = $this->SingleValuedPathExpression(); | |
break; | |
} | |
// Validating ResultVariable | |
if ( ! isset($this->queryComponents[$lookaheadValue]['resultVariable'])) { | |
$this->semanticalError('Cannot add having condition on a non result variable.'); | |
} | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment