All files / src/abap/5_syntax/expressions method_def_returning.ts

81.25% Statements 26/32
33.33% Branches 2/6
100% Functions 1/1
81.25% Lines 26/32

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 321x 1x 1x 1x 1x 1x 1x 1x 1x 80x 80x     80x 80x 80x     80x 80x 80x 80x 2x 2x 80x 80x 80x 80x     80x 1x
import {ExpressionNode} from "../../nodes";
import {CurrentScope} from "../_current_scope";
import * as Expressions from "../../2_statements/expressions";
import {TypedIdentifier, IdentifierMeta} from "../../types/_typed_identifier";
import {UnknownType} from "../../types/basic";
import {BasicTypes} from "../basic_types";
 
export class MethodDefReturning {
  public runSyntax(node: ExpressionNode, scope: CurrentScope, filename: string, meta: IdentifierMeta[]): TypedIdentifier {
    const name = node.findDirectExpression(Expressions.MethodParamName);
    if (name === undefined) {
      throw new Error("method_parameter.ts, todo, handle pass by value and reference");
    }
 
    const type = node.findDirectExpression(Expressions.TypeParam);
    if (type === undefined) {
      throw new Error("method_parameter.ts, unexpected structure");
    }
 
    let found = new BasicTypes(filename, scope).parseType(type);
 
    if (found?.isGeneric() === true) {
      found = new UnknownType("RETURNING parameter must be fully specified");
    }
 
    if (found) {
      return new TypedIdentifier(name.getFirstToken(), filename, found, meta);
    } else {
      return new TypedIdentifier(name.getFirstToken(), filename, new UnknownType("method param, todo"), meta);
    }
  }
}