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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {seq, tok, ver, altPrio, Expression} from "../combi";
import {ParenRightW, ParenRight, ParenLeft} from "../../1_lexer/tokens";
import {TargetField} from ".";
import {Version} from "../../../version";
import {IStatementRunnable} from "../statement_runnable";
export class InlineData extends Expression {
public getRunnable(): IStatementRunnable {
const right = altPrio(tok(ParenRightW), tok(ParenRight));
const left = tok(ParenLeft);
const data = seq("DATA", left, TargetField, right);
const final = seq("FINAL", left, TargetField, right);
return altPrio(ver(Version.v740sp02, data, Version.OpenABAP), ver(Version.v757, final, Version.OpenABAP)) ;
}
} |