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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {seq, alt, tok, Expression, altPrio} from "../combi";
import {ParenLeftW, WParenRight, WParenRightW, ParenLeft, ParenRight, ParenRightW} from "../../1_lexer/tokens";
import {Source, ParameterListS, MethodParameters} from ".";
import {IStatementRunnable} from "../statement_runnable";
import {ConstantString} from "./constant_string";
export class MethodCallParam extends Expression {
public getRunnable(): IStatementRunnable {
const param = alt(Source, ParameterListS, MethodParameters);
// rule ParserMissingSpace makes sure the whitespace is correct
const right1 = altPrio(tok(WParenRight), tok(WParenRightW), tok(ParenRight), tok(ParenRightW));
const right2 = altPrio(tok(WParenRight), tok(WParenRightW));
// note: make sure this does not overlap with FieldLength expression
const ret = altPrio(
seq(tok(ParenLeftW), param, right1),
seq(tok(ParenLeft), param, right2),
seq(tok(ParenLeft), ConstantString, altPrio(tok(ParenRight), tok(ParenRightW))));
return ret;
}
} |