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

67.74% Statements 21/31
50% Branches 4/8
100% Functions 1/1
67.74% Lines 21/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 25x 25x 25x 25x     25x 25x 1x 1x 24x 24x 24x                 1x
import * as Expressions from "../../2_statements/expressions";
import {StatementNode} from "../../nodes";
import {CurrentScope} from "../_current_scope";
import {IdentifierMeta, TypedIdentifier} from "../../types/_typed_identifier";
import {DataDefinition} from "../expressions/data_definition";
import {UnknownType} from "../../types/basic/unknown_type";
 
export class ClassData {
  public runSyntax(node: StatementNode, scope: CurrentScope, filename: string): TypedIdentifier | undefined {
    const dd = node.findFirstExpression(Expressions.DataDefinition);
    if (dd) {
      const found = new DataDefinition().runSyntax(dd, scope, filename);
      if (found === undefined) {
        return undefined;
      }
      if (found?.getType().isGeneric() === true
          && found?.getType().containsVoid() === false) {
        throw new Error("DATA definition cannot be generic, " + found.getName());
      }
      const meta = [...found.getMeta(), IdentifierMeta.Static];
      return new TypedIdentifier(found.getToken(), filename, found.getType(), meta, found.getValue());
    }

    const fallback = node.findFirstExpression(Expressions.NamespaceSimpleName);
    if (fallback) {
      return new TypedIdentifier(fallback.getFirstToken(), filename, new UnknownType("class data, fallback"));
    }

    return undefined;
  }
}