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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {seq, opt, tok, alt, altPrio, optPrio, plus, ver, Expression} from "../combi"; import {BracketLeftW, WBracketRight, WBracketRightW} from "../../1_lexer/tokens"; import {Dynamic, Source, SimpleName, ComponentChainSimple} from "."; import {Version} from "../../../version"; import {IStatementRunnable} from "../statement_runnable"; export class TableExpression extends Expression { public getRunnable(): IStatementRunnable { const fields = plus(seq(altPrio(ComponentChainSimple, Dynamic), "=", Source)); const key = seq("KEY", SimpleName); const index = seq("INDEX", Source); const ret = seq(tok(BracketLeftW), alt(Source, seq(optPrio(key), opt("COMPONENTS"), altPrio(fields, index))), altPrio(tok(WBracketRight), tok(WBracketRightW))); return ver(Version.v740sp02, ret); } } |