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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 1x | import {seq, optPrio, tok, starPrio, altPrio, Expression} from "../combi";
import {TargetField, TargetFieldSymbol, NewObject, InlineData, InlineFS, TableExpression, FieldOffset, FieldLength, TableBody, ClassName, Cast, ComponentName} from ".";
import {InstanceArrow, StaticArrow, Dash} from "../../1_lexer/tokens";
import {IStatementRunnable} from "../statement_runnable";
import {AttributeName} from "./attribute_name";
import {Dereference} from "./dereference";
export class Target extends Expression {
public getRunnable(): IStatementRunnable {
const attr = seq(tok(InstanceArrow), AttributeName);
const comp = seq(tok(Dash), ComponentName);
const something = starPrio(altPrio(Dereference, attr, comp, TableExpression));
const clas = seq(ClassName, tok(StaticArrow), AttributeName);
const start = altPrio(Cast, NewObject, clas, TargetField, TargetFieldSymbol);
const fields = seq(optPrio(FieldOffset), optPrio(FieldLength));
const optional = altPrio(TableBody, fields);
return altPrio(InlineData, InlineFS, seq(start, something, optional));
}
} |