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 | 1x 1x 1x 1x 1x 1x 1x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 1x | import {seq, tok, star, Expression, optPrio, altPrio} from "../combi";
import {InstanceArrow, StaticArrow, Dash} from "../../1_lexer/tokens";
import {ClassName, NewObject, ComponentName, FieldChain, MethodCall, Cast, AttributeName} from ".";
import {IStatementRunnable} from "../statement_runnable";
export class MethodCallChain extends Expression {
public getRunnable(): IStatementRunnable {
const attr = seq(tok(InstanceArrow), AttributeName);
const comp = seq(tok(Dash), ComponentName);
const fields = star(altPrio(attr, comp));
const after = star(seq(fields, tok(InstanceArrow), MethodCall));
const localVariable = seq(FieldChain, tok(InstanceArrow));
const staticClass = seq(ClassName, tok(StaticArrow));
const ret = seq(altPrio(seq(optPrio(altPrio(localVariable, staticClass)), MethodCall),
NewObject,
Cast),
after);
return ret;
}
} |