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 {alt, tok, seq, Expression, ver, plus, optPrio} from "../combi";
import {Version} from "../../../version";
import {TypeNameOrInfer, Source, ParameterListS} from ".";
import {ParenLeftW, WParenLeftW, WParenRightW} from "../../1_lexer/tokens";
import {IStatementRunnable} from "../statement_runnable";
import {FieldAssignment} from "./field_assignment";
// note: this can also be new data reference
export class NewObject extends Expression {
public getRunnable(): IStatementRunnable {
const lines = plus(seq(tok(WParenLeftW), Source, tok(WParenRightW)));
const linesFields = plus(seq(tok(WParenLeftW), plus(FieldAssignment), tok(WParenRightW)));
const neww = seq("NEW",
TypeNameOrInfer,
tok(ParenLeftW),
optPrio(alt(Source, ParameterListS, lines, linesFields)),
")");
return ver(Version.v740sp02, neww, Version.OpenABAP);
}
} |