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

80.64% Statements 25/31
33.33% Branches 2/6
100% Functions 1/1
80.64% Lines 25/31

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 30 311x 1x 1x 1x 1x 1x 1x 1x 1x 6x 6x     6x 6x 6x 1x 1x 6x 6x 6x 6x 6x 6x 6x 6x         1x
import * as Expressions from "../../2_statements/expressions";
import {StatementNode} from "../../nodes";
import {CurrentScope} from "../_current_scope";
import {TypedIdentifier} from "../../types/_typed_identifier";
import {StatementSyntax} from "../_statement_syntax";
import {UnknownType} from "../../types/basic/unknown_type";
 
export class Tables implements StatementSyntax {
  public runSyntax(node: StatementNode, scope: CurrentScope, filename: string): void {
    const nameToken = node.findFirstExpression(Expressions.Field)?.getFirstToken();
    if (nameToken === undefined) {
      return undefined;
    }
 
    let name = nameToken.getStr();
    if (name.startsWith("*")) {
      name = name.substr(1);
    }
 
    // lookupTableOrView will also give Unknown and Void
    const found = scope.getDDIC()?.lookupTableOrView(name);
    if (found) {
      scope.getDDICReferences().addUsing(scope.getParentObj(), {object: found.object, filename: filename, token: nameToken});
      scope.addIdentifier(new TypedIdentifier(nameToken, filename, found.type));
      return;
    }

    // this should never happen,
    scope.addIdentifier(new TypedIdentifier(nameToken, filename, new UnknownType("Tables, fallback")));
  }
}