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 | 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 {seq, optPrio, tok, starPrio, altPrio, Expression} from "../combi";
import {TargetField, TargetFieldSymbol, NewObject, Arrow, TableExpression, FieldAll, FieldOffset, FieldLength, ClassName, Cast, ComponentName, TableBody} 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 SimpleTarget 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 cast = seq(altPrio(Cast, NewObject), Arrow, FieldAll);
const clas = seq(ClassName, tok(StaticArrow), AttributeName);
const start = altPrio(cast, clas, TargetField, TargetFieldSymbol);
const fields = seq(optPrio(FieldOffset), optPrio(FieldLength));
const optional = altPrio(TableBody, fields);
return seq(start, something, optional);
}
} |