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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 1x 1x | import {IStatement} from "./_statement"; import {seq, ver, tok, plus, alt, optPrio, opt} from "../combi"; import {AssociationName, NamespaceSimpleName, SimpleName, Source, Target} from "../expressions"; import {IStatementRunnable} from "../statement_runnable"; import {Version} from "../../../version"; import {WParenLeftW, WParenRightW} from "../../1_lexer/tokens"; export class ReadEntities implements IStatement { public getMatcher(): IStatementRunnable { const from = seq("FROM", Source); const fields = seq("FIELDS", tok(WParenLeftW), plus(SimpleName), tok(WParenRightW), "WITH", Source); const all = seq("ALL FIELDS WITH", Source); const s = seq("READ ENTITIES OF", NamespaceSimpleName, opt("IN LOCAL MODE"), "ENTITY", SimpleName, opt(seq("BY", AssociationName)), alt(fields, from, all), optPrio(seq("RESULT", Target)), optPrio(seq("LINK", Target)), optPrio(seq("FAILED", Target)), optPrio(seq("REPORTED", Target))); return ver(Version.v754, s); } } |