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 618x     618x 618x 618x     618x 618x 618x 618x 8x 8x 8x 8x 1x 1x 1x 1x 1x 8x 618x 618x 618x 15x 15x 618x 618x 618x 5x 5x 618x 618x 618x 618x 112x 112x 618x 618x 618x 12x 12x 12x 12x 12x 7x 12x 5x 5x     12x 618x 618x 618x 6x 6x 6x 6x 618x 618x 618x 618x 1x 1x 27x 27x 1x 1x 666x 666x 1x 1x     1x 1x 534x 534x 1x 1x 1x 1x 1x 1x 1465x 1465x 1x 1x 70x 70x 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 {CurrentScope} from "../5_syntax/_current_scope";
import {IMethodDefinition} from "./_method_definition";
import {ReferenceType} from "../5_syntax/_reference";
 
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, filename: string, scope: CurrentScope) {
    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(), filename);
 
    this.redefinition = false;
    if (node.findDirectExpression(Expressions.Redefinition)) {
      this.redefinition = true;
 
      const name = found.getFirstToken().getStr();
      if (name.includes("~")) {
        const idef = scope.findInterfaceDefinition(name.split("~")[0]);
        if (idef) {
          scope.addReference(found.getFirstToken(), idef, ReferenceType.ObjectOrientedReference, 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 = scope.findClassDefinition(name);
      if (clas) {
        scope.addReference(token, clas, ReferenceType.ObjectOrientedReference, filename, {ooName: name.toUpperCase(), ooType: "CLAS"});
      } else if (scope.getDDIC().inErrorNamespace(name) === false) {
        scope.addReference(token, clas, ReferenceType.ObjectOrientedVoidReference, filename, {ooName: name.toUpperCase(), ooType: "CLAS"});
      } else {
        scope.addReference(token, clas, ReferenceType.ObjectOrientedUnknownReference, 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, this.filename, scope, 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;
  }
 
}