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 17 18 19 20 21 22 23 24 25 26 27 28 29 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {plusPrio, seq, ver, tok, Expression, optPrio, altPrio} from "../combi"; import {Constant, SQLFieldName, SQLAggregation, SQLCase, SQLAsName} from "."; import {Version} from "../../../version"; import {WAt, WParenLeftW, WParenRightW} from "../../1_lexer/tokens"; import {IStatementRunnable} from "../statement_runnable"; import {SQLFunction} from "./sql_function"; import {SimpleFieldChain} from "./simple_field_chain"; import {SQLPath} from "./sql_path"; export class SQLField extends Expression { public getRunnable(): IStatementRunnable { const abap = ver(Version.v740sp05, seq(tok(WAt), SimpleFieldChain)); const as = seq("AS", SQLAsName); const field = altPrio(SQLAggregation, SQLCase, SQLFunction, SQLPath, SQLFieldName, abap, Constant); const sub = plusPrio(seq(altPrio("+", "-", "*", "/", "&&"), optPrio(tok(WParenLeftW)), field, optPrio(tok(WParenRightW)))); const arith = ver(Version.v740sp05, sub); return seq(field, optPrio(arith), optPrio(as)); } } |