All files / src/abap/2_statements/expressions assign_source.ts

100% Statements 28/28
100% Branches 1/1
100% Functions 1/1
100% Lines 28/28

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 27 281x 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 1x
import {seq, alt, tok, opt, Expression, ver} from "../combi";
import {InstanceArrow, StaticArrow} from "../../1_lexer/tokens";
import {IStatementRunnable} from "../statement_runnable";
import {Source} from "./source";
import {Dynamic} from "./dynamic";
import {Field} from "./field";
import {SimpleSource3} from "./simple_source3";
import {Version} from "../../../version";
 
export class AssignSource extends Expression {
  public getRunnable(): IStatementRunnable {
    const component = seq("COMPONENT",
                          alt(SimpleSource3, ver(Version.v740sp02, Source)),
                          "OF STRUCTURE",
                          Source);
 
    const tableField = seq("TABLE FIELD", alt(Source, Dynamic));
 
    const arrow = alt(tok(InstanceArrow), tok(StaticArrow));
 
    const source = alt(seq(Source, opt(seq(arrow, Dynamic))),
                       component,
                       tableField,
                       seq(Dynamic, opt(seq(arrow, alt(Field, Dynamic)))));
 
    return source;
  }
}