Created
July 31, 2019 09:29
-
-
Save lucamolteni/faac908dd1fca6ff4ae4e76d80db624b 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
| BinaryExpr expr = ((DrlxParseSuccess) drlxParseResult).getExpr().asBinaryExpr(); | |
| String expr1 = printConstraint(expr.asBinaryExpr().getLeft()); | |
| DrlxParseResult drlxParseResult1 = constraintParser.drlxParse(patternType, patternIdentifier, expr1, isPositional); | |
| patternConstraintParseResults.add(new PatternConstraintParseResult(expr1, patternIdentifier, drlxParseResult1)); | |
| String expr2 = printConstraint(expr.asBinaryExpr().getRight()); | |
| DrlxParseResult drlxParseResult2 = constraintParser.drlxParse(patternType, patternIdentifier, expr2, isPositional); | |
| patternConstraintParseResults.add(new PatternConstraintParseResult(expr2, patternIdentifier, drlxParseResult2)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment