All files / src/abap/types method_definition.ts

93.38% Statements 113/121
88.46% Branches 23/26
88.88% Functions 8/9
93.38% Lines 113/121

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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 1211x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 625x     625x 625x 625x     625x 625x 625x 625x 8x 8x 8x 8x 1x 1x 1x 1x 1x 8x 625x 625x 625x 15x 15x 625x 625x 625x 5x 5x 625x 625x 625x 625x 113x 113x 625x 625x 625x 12x 12x 12x 12x 12x 7x 12x 5x 5x     12x 625x 625x 625x 7x 7x 7x 7x 625x 625x 625x 625x 1x 1x 27x 27x 1x 1x 677x 677x 1x 1x     1x 1x 542x 542x 1x 1x 1x 1x 1x 1x 1487x 1487x 1x 1x 71x 71x 1x 1x 1x 1x 1x 1x
import {StatementNode} from "../nodes";
import {MethodDef} from "../2_statements/statements";
import * as Expressions from "../2_statements/expressions";
import {MethodParameters} from "./method_parameters";
import {Visibility} from "../4_file_information/visibility";
import {Identifier} from "../4_file_information/_identifier";
import {IMethodDefinition} from "./_method_definition";
import {ReferenceType} from "../5_syntax/_reference";
import {SyntaxInput} from "../5_syntax/_syntax_input";
 
export class MethodDefinition extends Identifier implements IMethodDefinition {
  private readonly visibility: Visibility;
  private readonly parameters: MethodParameters;
  private readonly redefinition: boolean;
  private readonly eventHandler: boolean;
  private readonly abstract: boolean;
  private readonly static: boolean;
  private readonly raising: string[];
  private readonly exceptions: string[];
 
// todo: final flag
 
  public constructor(node: StatementNode, visibility: Visibility, input: SyntaxInput) {
    if (!(node.get() instanceof MethodDef)) {
      throw new Error("MethodDefinition, expected MethodDef as part of input node");
    }
 
    const found = node.findDirectExpression(Expressions.MethodName);
    if (found === undefined) {
      throw new Error("MethodDefinition, expected MethodDef as part of input node");
    }
    super(found.getFirstToken(), input.filename);
 
    this.redefinition = false;
    if (node.findDirectExpression(Expressions.Redefinition)) {
      this.redefinition = true;
 
      const name = found.getFirstToken().getStr();
      if (name.includes("~")) {
        const idef = input.scope.findInterfaceDefinition(name.split("~")[0]);
        if (idef) {
          input.scope.addReference(found.getFirstToken(), idef, ReferenceType.ObjectOrientedReference, input.filename);
        }
      }
    }
 
    this.eventHandler = false;
    if (node.findDirectExpression(Expressions.EventHandler)) {
      this.eventHandler = true;
    }
 
    this.abstract = false;
    if (node.findDirectExpression(Expressions.Abstract)) {
      this.abstract = true;
    }
 
    this.static = false;
    // checks for "CLASS-METHODS"
    if (node.getFirstToken().getStr().toUpperCase().startsWith("CLASS")) {
      this.static = true;
    }
 
    this.raising = [];
    for (const r of node.findDirectExpression(Expressions.MethodDefRaising)?.findAllExpressions(Expressions.ClassName) || []) {
      const token = r.getFirstToken();
      const name = token.getStr();
      this.raising.push(name);
      const clas = input.scope.findClassDefinition(name);
      if (clas) {
        input.scope.addReference(token, clas, ReferenceType.ObjectOrientedReference, input.filename, {ooName: name.toUpperCase(), ooType: "CLAS"});
      } else if (input.scope.getDDIC().inErrorNamespace(name) === false) {
        input.scope.addReference(token, clas, ReferenceType.ObjectOrientedVoidReference, input.filename, {ooName: name.toUpperCase(), ooType: "CLAS"});
      } else {
        input.scope.addReference(token, clas, ReferenceType.ObjectOrientedUnknownReference, input.filename, {ooName: name.toUpperCase(), ooType: "CLAS"});
      }
    }
 
    this.exceptions = [];
    for (const r of node.findDirectExpression(Expressions.MethodDefExceptions)?.findAllExpressions(Expressions.NamespaceSimpleName) || []) {
      const token = r.getFirstToken();
      const name = token.getStr();
      this.exceptions.push(name);
    }
 
    this.visibility = visibility;
    this.parameters = new MethodParameters(node, input, this.abstract);
  }
 
  public getVisibility(): Visibility {
    return this.visibility;
  }
 
  public isRedefinition(): boolean {
    return this.redefinition;
  }
 
  public isAbstract(): boolean {
    return this.abstract;
  }
 
  public isStatic(): boolean {
    return this.static;
  }
 
  public isEventHandler(): boolean {
    return this.eventHandler;
  }
 
  public getParameters(): MethodParameters {
    return this.parameters;
  }
 
  public getRaising(): readonly string[] {
    return this.raising;
  }
 
  public getExceptions(): readonly string[] {
    return this.exceptions;
  }
 
}