Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {CDSFunction, CDSName, CDSString} from "."; import {alt, altPrio, Expression, optPrio, seq, starPrio} from "../../abap/2_statements/combi"; import {IStatementRunnable} from "../../abap/2_statements/statement_runnable"; import {CDSInteger} from "./cds_integer"; export class CDSCondition extends Expression { public getRunnable(): IStatementRunnable { const name = seq(CDSName, optPrio(seq(".", alt(CDSName, CDSString)))); const left = alt(name, CDSFunction, CDSString); const compare = seq(left, alt("=", seq("!", "="), seq("<", ">"), "<", ">", seq(">", "="), seq("<", "="), "LIKE", "NOT LIKE"), alt(left, CDSInteger, CDSFunction, CDSString)); const is = seq(left, "IS", optPrio("NOT"), altPrio("INITIAL", "NULL")); const condition = seq(optPrio("NOT"), alt(compare, is)); const paren = seq("(", CDSCondition, ")"); return seq(alt(condition, paren), starPrio(seq(altPrio("AND", "OR"), altPrio(condition, paren)))); } } |