All files / src/abap/5_syntax/statements move_corresponding.ts

86.66% Statements 26/30
60% Branches 3/5
100% Functions 1/1
86.66% Lines 26/30

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 28 29 301x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 9x 9x 9x 9x     9x 9x 9x 9x 9x 1x 1x 1x     1x 9x 1x
import * as Expressions from "../../2_statements/expressions";
import {StatementNode} from "../../nodes";
import {CurrentScope} from "../_current_scope";
import {Source} from "../expressions/source";
import {Target} from "../expressions/target";
import {StatementSyntax} from "../_statement_syntax";
import {Version} from "../../../version";
import {TableType} from "../../types/basic";
 
export class MoveCorresponding implements StatementSyntax {
  public runSyntax(node: StatementNode, scope: CurrentScope, filename: string): void {
 
    const s = node.findDirectExpression(Expressions.Source);
    const t = node.findDirectExpression(Expressions.SimpleTarget);
    if (s === undefined || t === undefined) {
      throw new Error("MoveCorresponding, source or target not found");
    }
 
    const sourceType = new Source().runSyntax(s, scope, filename);
    const targetType = new Target().runSyntax(t, scope, filename);
 
    if (scope.getVersion() < Version.v740sp05 && scope.getVersion() !== Version.Cloud) {
      if (sourceType instanceof TableType && sourceType.isWithHeader() === false) {
        throw new Error("MOVE-CORRESPONDING with tables possible from v740sp05");
      } else if (targetType instanceof TableType && targetType.isWithHeader() === false) {
        throw new Error("MOVE-CORRESPONDING with tables possible from v740sp05");
      }
    }
  }
}