All files / src/abap/5_syntax basic_types.ts

89.85% Statements 877/976
84.18% Branches 346/411
100% Functions 16/16
89.85% Lines 877/976

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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 9761x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 4011x 4011x 4011x 1x 1x 126x 126x 14x 14x 112x 112x 126x 45x 45x 67x 126x 7x 7x 7x 7x 7x 7x 3x 3x 3x 3x 3x 3x 3x 3x 1x 1x 3x 3x 3x 3x 7x 4x 4x 4x 4x 4x 7x 126x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 2x 2x 2x 2x 2x 2x 58x 58x 126x 126x 1x 1x 57x 57x 126x 29x 29x 28x 28x 126x     28x 28x 28x 1x 1x 193x     193x 193x 193x 3x 3x 193x 2x 2x 193x 2x 2x 193x     193x 193x 193x 193x     193x 193x 193x 20x 193x 173x 173x 173x 173x 173x 119x 119x 119x 173x 173x 173x 173x 15x 15x 15x 173x 173x 159x 159x 173x 173x 14x 14x 173x 173x 10x 10x 10x 163x 173x 79x 79x 79x 39x 1x 1x 79x 2x 2x 2x 40x 38x 38x 1x 1x 38x 38x 38x 38x     38x 38x 79x 162x 173x 8x 173x 154x 154x 2x 154x 152x 152x     173x 174x 193x 1x 1x 173x 173x 173x 1x 1x 503x 503x 503x 503x 503x 5x 5x 503x 503x 1x 1x 3151x 3151x 3151x 38x 38x 3113x 3113x 3151x 167x 167x 2946x 2946x 2946x 3151x 1999x 1999x 946x 946x 3151x 608x 608x 608x 4x 4x 4x 4x 4x 4x 608x 608x 608x 608x 338x 3151x 3151x 2x 2x 2x 336x 336x 336x 336x 336x 336x   336x 237x 237x 336x 336x 336x       1x 1x 2446x 2446x 1656x 1656x 2446x     2446x 2446x 3x 3x 2446x 2446x 2446x 790x 6x 790x 784x 784x 784x 397x 397x 784x 2446x     2446x 2446x 2446x 2444x 2444x       1x 1x 511x 511x 511x 511x     511x 511x 511x 511x 511x 511x 456x 511x 55x 21x 55x 34x 6x 6x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 509x 31x 31x 511x 2x 2x 511x 511x 511x 8x 8x 8x     8x 8x 8x 8x 8x 8x 8x 8x 8x 10x 10x 8x 8x 8x 511x 511x 511x 54x 511x 297x 297x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 511x 20x 20x 20x 20x 511x 491x 491x 491x 458x 458x 458x 458x 491x 33x 33x 33x 5x 5x 5x 5x 33x 28x 28x 28x 28x   28x 10x 10x 10x     10x 10x 10x 10x 10x 10x 10x 10x 28x 2x 2x 2x     2x 2x 2x 2x 2x 2x 2x 2x 18x 16x                     16x 16x 16x 16x 1x 1x 3034x 3034x 3034x 3034x 569x 569x 3034x 243x 243x 1x 1x 243x 3034x 215x 215x 3034x 3034x 3034x 1x 1x 3034x 194x 194x 3034x 3034x 3034x 73x 73x 73x 73x 3x 3x 73x 1x 1x 73x 73x 73x 73x   73x 62x 73x 10x 11x 1x 1x 3034x 7x 7x 7x     7x 2961x 2954x 2954x 2954x 2954x 14x 2954x 101x 101x 10x 10x 101x 6x 6x 101x 3x 3x 101x 1x 1x 101x 101x 101x 2x 2x 2940x 2x 2x 2x     2x 2x 2x             2839x 284x 2837x 2553x 2553x 2553x 2553x 8x 2553x 5x 2x 5x 1x 3x 2x 2x 5x 2550x 2553x 38x 38x 38x 38x 10x 10x 10x 10x 10x 38x 38x 38x 1x 1x 38x 2553x 2553x 2935x 2935x 2935x 1x 1x 1x 1x 2652x   2652x 11x 11x 2641x 2641x 1x 1x 1x 3113x 3113x 3113x 80x 80x 80x 2x 2x 2x 3113x 2946x 2946x 165x 165x 165x 3113x 93x 93x 93x 3113x 9x 9x 9x 9x 165x 165x 165x 3113x 93x 93x 93x 93x 93x 93x 93x 4x 4x 4x     4x 4x 93x 89x 89x 89x 9x 9x 9x 89x 13x 13x 89x 89x 89x 89x 89x 89x 89x 89x 1x 1x 66x 66x 3113x 9x 9x 9x 9x 9x 9x 9x 2x 2x 2x 2x     2x 9x 9x 9x 9x 9x 9x 9x 9x     9x 9x     9x         72x 63x 63x 63x 36x 36x 1x 1x 1x 36x 36x 35x 35x 35x 35x   35x 35x 35x 35x 36x 63x 27x 27x 63x     63x 26x 26x 63x     63x 116x 116x 3113x 46x 46x 1x 46x     45x 46x 1x 1x 44x 44x 114x 114x 114x 1x 1x 20x 20x     20x 20x 20x 20x 20x 9x 9x 9x 7x 7x 9x 1x 1x 2x 20x 11x 11x 11x 1x 1x 1x 1x 1x 1x 1x 1x   11x 10x 10x 6x 1x 6x 1x 5x 4x 4x 4x 4x 6x 4x 10x 10x 10x 10x 4x 4x 4x 3x 4x 1x 1x 1x 1x 1x               20x 1x 1x 304x     304x 304x 304x 302x 30x 30x 272x 302x 171x 171x 171x 171x 302x 103x 103x 304x 34x 304x     69x 304x 1x 1x 68x 304x 50x 50x 50x 18x 18x 18x 1x 1x 218x 218x 4x 4x 214x 218x 4x 4x 210x 210x 218x 194x 194x 2x 2x 2x 6x 2x 6x 4x 4x 6x 2x 194x 192x 192x 194x 16x 16x 16x 16x 16x       1x 1x 2552x 2552x 5x 5x 2547x 2547x 1x 1x 2553x 2553x 2553x 2553x 1x 1x 2552x 2553x 129x 129x 129x 129x             129x 2423x 2553x 2214x 2214x 209x 209x 2553x 203x 203x 6x 6x 2553x 2x 2x 4x 4x 4x 4x 4x 4x       1x 1x 338x 1x 1x 337x 338x 1x 338x 1x 1x 337x 337x 337x 1x 1x
/* eslint-disable default-case */
import {TypedIdentifier} from "../types/_typed_identifier";
import {StatementNode, ExpressionNode} from "../nodes";
import * as Expressions from "../2_statements/expressions";
import * as Statements from "../2_statements/statements";
import * as Types from "../types/basic";
import {CurrentScope} from "./_current_scope";
import {AbstractType} from "../types/basic/_abstract_type";
import {ScopeType} from "./_scope_type";
import {ObjectOriented} from "./_object_oriented";
import {ClassConstant} from "../types/class_constant";
import {Identifier as TokenIdentifier} from "../1_lexer/tokens/identifier";
import {ReferenceType} from "./_reference";
import {CharacterType, ITableKey, ObjectReferenceType, StructureType, TableAccessType, TableType, VoidType} from "../types/basic";
import {FieldChain} from "./expressions/field_chain";
import {ClassDefinition, InterfaceDefinition} from "../types";
import {Field, FieldSub, TypeTableKey} from "../2_statements/expressions";
import {BuiltIn} from "./_builtin";
import {Position} from "../../position";
 
export class BasicTypes {
  private readonly filename: string;
  private readonly scope: CurrentScope;
 
  public constructor(filename: string, scope: CurrentScope) {
    this.filename = filename;
    this.scope = scope;
  }
 
  public lookupQualifiedName(name: string | undefined): TypedIdentifier | undefined {
// argh, todo, rewrite this entire method, more argh, again argh
    if (name === undefined) {
      return undefined;
    }
 
    const found = this.scope.findType(name);
    if (found) {
      return found;
    }
 
    if (name.includes("=>")) {
      const split = name.split("=>");
      const ooName = split[0];
      const typeName = split[1];
      const oo = this.scope.findObjectDefinition(ooName);
      if (oo) {
        if (typeName.includes("-")) {
          const split = typeName.split("-");
          const subTypeName = split[0];
          const fieldName = split[1];
          const stru = oo.getTypeDefinitions().getByName(subTypeName);
          const struType = stru?.getType();
          if (stru && struType instanceof StructureType) {
            let f = struType.getComponentByName(fieldName);
            if (split[2] && f instanceof StructureType) {
              f = f.getComponentByName(split[2]);
            }
            if (f) {
              return new TypedIdentifier(stru.getToken(), stru.getFilename(), f);
            }
          }
        } else {
          const f = oo.getTypeDefinitions().getByName(typeName);
          if (f) {
            return f;
          }
        }
      }
    } else if (name.includes("-")) {
      const split = name.split("-");
      const typeName = split[0];
      const fieldName = split[1];
      const type = this.scope.findType(typeName);
      if (type) {
        const stru = type.getType();
        if (stru instanceof StructureType) {
          let f = stru.getComponentByName(fieldName);
          if (split[2] && f instanceof StructureType) {
            f = f.getComponentByName(split[2]);
          }
          if (f) {
            return new TypedIdentifier(type.getToken(), type.getFilename(), f);
          }
        }
      }
    }
 
    const lookup = this.scope.getDDIC().lookupNoVoid(name);
    const id = lookup?.object?.getIdentifier();
    if (id && lookup?.type) {
      return new TypedIdentifier(id.getToken(), id.getFilename(), lookup.type);
    }
 
    const builtin = this.scope.getDDIC().lookupBuiltinType(name);
    if (builtin) {
      return new TypedIdentifier(new TokenIdentifier(new Position(1, 1), name), BuiltIn.filename, builtin);
    }
 
    const type = this.scope.findTypePoolType(name);
    if (type) {
      return type;
    }
 
    return undefined;
  }
 
  public resolveLikeName(node: ExpressionNode | StatementNode | undefined, headerLogic = true): AbstractType | undefined {
    if (node === undefined) {
      return undefined;
    }
 
    let chain = node.findFirstExpression(Expressions.FieldChain);
    if (chain === undefined) {
      chain = node.findFirstExpression(Expressions.TypeName);
    }
    if (chain === undefined) {
      chain = node.findFirstExpression(Expressions.FieldSub);
    }
    if (chain === undefined) {
      chain = node.findFirstExpression(Expressions.SimpleFieldChain);
    }
    if (chain === undefined) {
      throw new Error("resolveLikeName, chain undefined");
    }
    const fullName = chain.concatTokens();
    let children = [...chain.getChildren()];
 
    if (children.length === 0) {
      return new Types.UnknownType("Type error, could not resolve \"" + fullName + "\", resolveLikeName1");
    }
 
    let type: AbstractType | undefined = undefined;
    if (children[1] && ( children[1].getFirstToken().getStr() === "=>" || children[1].getFirstToken().getStr() === "->")) {
      type = new FieldChain().runSyntax(chain, this.scope, this.filename, ReferenceType.TypeReference);
    } else {
      const name = children.shift()!.getFirstToken().getStr();
      let found = this.scope.findVariable(name);
 
      const full = this.scope.findVariable(fullName); // workaround for eg "sy-repid"
      if (full) {
        children = [];
        found = full;
      }
 
      type = found?.getType();
 
      if (found === undefined) {
        found = this.scope.findExtraLikeType(name);
        type = found?.getType();
      }
 
      if (found) {
        this.scope.addReference(chain?.getFirstToken(), found, ReferenceType.TypeReference, this.filename);
      }
 
      if (type === undefined) {
        type = this.scope.getDDIC().lookupNoVoid(name)?.type;
      }
 
      if (type === undefined && this.scope.isOO() === false && this.scope.getDDIC().inErrorNamespace(name) === false) {
        this.scope.addReference(chain.getChildren()[0].getFirstToken(), undefined, ReferenceType.VoidType, this.filename);
        return new Types.VoidType(name);
      }
 
      while (children.length > 0) {
        const child = children.shift()!;
 
        if (child.getFirstToken().getStr() === "-") {
          if (type instanceof Types.VoidType) {
            return type;
          }
        } else if (child.concatTokens() === "[]") {
          if (type instanceof Types.TableType) {
            type = new TableType(type.getRowType(), {withHeader: false, keyType: Types.TableKeyType.default});
          }
        } else { // field name
          let sub: AbstractType | undefined = undefined;
          if (type instanceof Types.TableType) {
            type = type.getRowType();
          }
          if (type instanceof Types.StructureType) {
            sub = type.getComponentByName(child.getFirstToken().getStr());
          }
          if (sub === undefined) {
            return new Types.UnknownType("Type error, field not part of structure " + fullName);
          }
          type = sub;
        }
      }
 
      if (type instanceof Types.VoidType) {
        return type;
      } else if (type instanceof TableType
          && type.isWithHeader()
          && headerLogic === true) {
        type = type.getRowType();
      } else if (type instanceof Types.TableType
          && type.isWithHeader() === true
          && type.getRowType() instanceof Types.VoidType) {
        return type.getRowType();
      }
    }
 
    if (!type) {
      return new Types.UnknownType("Type error, could not resolve \"" + fullName + "\", resolveLikeName2");
    }
 
    return type;
  }
 
  private cloneType(type: AbstractType, qualifiedName?: string): AbstractType {
    // nested types(containing "-") will inherit the qualified names if possible
    // todo, this needs to be extended to all AbstractTypes instead of just CharacterType
    if (type instanceof CharacterType
        && qualifiedName
        && qualifiedName.includes("-") === false) {
      type = type.cloneType({qualifiedName});
    }
    return type;
  }
 
  public resolveTypeName(typeName: ExpressionNode | undefined,
                         length?: number, decimals?: number, qualifiedName?: string): AbstractType | undefined {
 
    if (typeName === undefined) {
      return undefined;
    }
 
    const chain = this.resolveTypeChain(typeName);
    if (chain) {
      return this.cloneType(chain, qualifiedName);
    }
 
    const chainText = typeName.concatTokens().toUpperCase();
    const f = this.scope.getDDIC().lookupBuiltinType(chainText, length, decimals, qualifiedName);
    if (f !== undefined) {
      return f;
    }
 
    const typ = this.scope.findType(chainText);
    if (typ) {
      const token = typeName.getFirstToken();
 
      if (chainText.includes("~")) {
        const name = chainText.split("~")[0];
        const idef = this.scope.findInterfaceDefinition(name);
        if (idef) {
          this.scope.addReference(token, idef, ReferenceType.ObjectOrientedReference, this.filename, {ooType: "INTF", ooName: name});
        }
      }
 
      this.scope.addReference(token, typ, ReferenceType.TypeReference, this.filename);
      return typ.getType();
    }
 
    const type = this.scope.findTypePoolType(chainText)?.getType();
    if (type) {
//      this.scope.addReference(typeName.getFirstToken(), type, ReferenceType.TypeReference, this.filename);
      return type;
    }
 
    const ddic = this.scope.getDDIC().lookup(chainText);
    if (ddic) {
      this.scope.getDDICReferences().addUsing(this.scope.getParentObj(),
                                              {object: ddic.object, token: typeName.getFirstToken(), filename: this.filename});
      if (ddic.type instanceof TypedIdentifier) {
        this.scope.addReference(typeName.getFirstToken(), ddic.type, ReferenceType.TypeReference, this.filename);
      } else if (ddic.type instanceof VoidType) {
        this.scope.addReference(typeName.getFirstToken(), undefined, ReferenceType.VoidType, this.filename);
      }
 
      return this.cloneType(ddic.type, qualifiedName);
    }

    return undefined;
  }
 
  public simpleType(node: StatementNode | ExpressionNode, qualifiedNamePrefix?: string): TypedIdentifier | undefined {
    let nameExpr = node.findFirstExpression(Expressions.NamespaceSimpleName);
    if (nameExpr === undefined) {
      nameExpr = node.findFirstExpression(Expressions.DefinitionName);
    }
    if (nameExpr === undefined) {
      return undefined;
    }
    let name = nameExpr.getFirstToken();
    if (nameExpr.countTokens() > 1) { // workaround for names with dashes
      name = new TokenIdentifier(name.getStart(), nameExpr.concatTokens());
    }
 
    let qualifiedName: string | undefined = undefined;
    if (node.get() instanceof Statements.Type) {
      if (this.scope.isTypePool() === true) {
        qualifiedName = name.getStr();
      } else {
        qualifiedName = ( qualifiedNamePrefix || "" ) + name.getStr();
        if (this.scope.getType() === ScopeType.ClassDefinition
            || this.scope.getType() === ScopeType.Interface) {
          qualifiedName = this.scope.getName() + "=>" + qualifiedName;
        }
      }
    } else if (qualifiedNamePrefix) {
      qualifiedName = qualifiedNamePrefix + qualifiedName;
    }
 
    const found = this.parseType(node, qualifiedName);
    if (found) {
      return new TypedIdentifier(name, this.filename, found);
    }

    return undefined;
  }
 
  public parseTable(node: ExpressionNode | StatementNode, name?: string): AbstractType | undefined {
    const typename = node.findFirstExpression(Expressions.TypeName);
 
    const text = node.findFirstExpression(Expressions.TypeTable)?.concatTokens().toUpperCase();
    if (text === undefined) {
      return undefined;
    }
 
    let type: Types.TableAccessType | undefined = undefined;
    if (text.startsWith("TYPE STANDARD TABLE ")
        || text.startsWith("TYPE TABLE ")
        || text.startsWith("LIKE TABLE ")
        || text.startsWith("LIKE STANDARD TABLE ")) {
      type = TableAccessType.standard;
    } else if (text.startsWith("TYPE SORTED TABLE ")
        || text.startsWith("LIKE SORTED TABLE ")) {
      type = TableAccessType.sorted;
    } else if (text.startsWith("TYPE HASHED TABLE ")
        || text.startsWith("LIKE HASHED TABLE ")) {
      type = TableAccessType.hashed;
    }
 
    const typeTableKeys = node.findAllExpressions(TypeTableKey);
 
    const firstKey = typeTableKeys[0];
    const isNamed = firstKey?.findDirectExpression(Field) !== undefined
      && firstKey?.findDirectExpression(Field)?.concatTokens().toUpperCase() !== "PRIMARY_KEY";
    const primaryKey: ITableKey = {
      name: "primary_key",
      type: type || TableAccessType.standard,
      isUnique: isNamed ? false : firstKey?.concatTokens().toUpperCase().includes("WITH UNIQUE ") === true,
      keyFields: [],
    };
    let start = 1;
    if (isNamed === false) {
      for (const k of firstKey?.findDirectExpressions(FieldSub) || []) {
        primaryKey.keyFields.push(k.concatTokens().toUpperCase());
      }
    } else {
      start = 0;
    }
 
    const secondaryKeys: ITableKey[] = [];
    for (let i = start; i < typeTableKeys.length; i++) {
      const row = typeTableKeys[i];
      const name = row.findDirectExpression(Field)?.concatTokens();
      if (name === undefined) {
        continue;
      }
 
      const secondary: ITableKey = {
        name: name,
        type: row.findDirectTokenByText("SORTED") ? TableAccessType.sorted : TableAccessType.hashed,
        isUnique: row?.concatTokens().toUpperCase().includes("WITH UNIQUE ") === true,
        keyFields: [],
      };
 
      for (const k of row?.findDirectExpressions(FieldSub) || []) {
        secondary.keyFields.push(k.concatTokens().toUpperCase());
      }
 
      secondaryKeys.push(secondary);
    }
 
    let keyType = Types.TableKeyType.user;
    if (text.includes(" EMPTY KEY")) {
      keyType = Types.TableKeyType.empty;
    } else if (text.includes(" DEFAULT KEY")) {
      keyType = Types.TableKeyType.default;
    }
 
    const options: Types.ITableOptions = {
      withHeader: text.includes(" WITH HEADER LINE"),
      keyType: keyType,
      primaryKey: primaryKey,
      secondary: secondaryKeys,
    };
 
    let found: AbstractType | undefined = undefined;
    if (text.startsWith("TYPE TABLE OF REF TO ")
        || text.startsWith("TYPE STANDARD TABLE OF REF TO ")
        || text.startsWith("TYPE SORTED TABLE OF REF TO ")
        || text.startsWith("TYPE HASHED TABLE OF REF TO ")) {
      found = this.resolveTypeRef(typename);
      if (found) {
        return new Types.TableType(found, options, name);
      }
    } else if (text.startsWith("TYPE TABLE OF ")
        || text.startsWith("TYPE STANDARD TABLE OF ")
        || text.startsWith("TYPE SORTED TABLE OF ")
        || text.startsWith("TYPE HASHED TABLE OF ")) {
      found = this.resolveTypeName(typename);
      if (found) {
        return new Types.TableType(found, options, name);
      }
    } else if (text.startsWith("LIKE TABLE OF ")
        || text.startsWith("LIKE STANDARD TABLE OF ")
        || text.startsWith("LIKE SORTED TABLE OF ")
        || text.startsWith("LIKE HASHED TABLE OF ")) {
      found = this.resolveLikeName(node);
      if (found) {
        return new Types.TableType(found, options, name);
      }
    } else if (text === "TYPE STANDARD TABLE"
        || text === "TYPE SORTED TABLE"
        || text === "TYPE HASHED TABLE"
        || text === "TYPE INDEX TABLE"
        || text === "TYPE ANY TABLE") {
      return new Types.TableType(new Types.AnyType(), options);
    } else if (text.startsWith("TYPE RANGE OF ")) {
      const sub = node.findFirstExpression(Expressions.TypeName);
      found = this.resolveTypeName(sub);
      if (found === undefined) {
        return new Types.UnknownType("TYPE RANGE OF, could not resolve type");
      }
      const structure = new Types.StructureType([
        {name: "sign", type: new Types.CharacterType(1)},
        {name: "option", type: new Types.CharacterType(2)},
        {name: "low", type: found},
        {name: "high", type: found},
      ]);
      options.primaryKey!.type = TableAccessType.standard;
      return new Types.TableType(structure, options, name);
    } else if (text.startsWith("LIKE RANGE OF ")) {
      const sub = node.findFirstExpression(Expressions.SimpleFieldChain);
      found = this.resolveLikeName(sub);
      if (found === undefined) {
        return new Types.UnknownType("LIKE RANGE OF, could not resolve type");
      }
      const structure = new Types.StructureType([
        {name: "sign", type: new Types.CharacterType(1)},
        {name: "option", type: new Types.CharacterType(2)},
        {name: "low", type: found},
        {name: "high", type: found},
      ], name);
      options.primaryKey!.type = TableAccessType.standard;
      return new Types.TableType(structure, options);
    } else if (typename && (text.startsWith("TYPE TABLE FOR CREATE ")
        || text.startsWith("TYPE TABLE FOR UPDATE "))) {
      const name = typename.concatTokens();
      const type = this.scope.getDDIC().lookupDDLS(name)?.type;
      if (type) {
        return new Types.TableType(new VoidType("RapTodo"), options);
      } else if (this.scope.getDDIC().inErrorNamespace(name)) {
        return new Types.UnknownType(`DDLS ${name} not found`);
      } else {
        return new Types.VoidType(name);
      }
    }
 
    // fallback to old style syntax, OCCURS etc
    return this.parseType(node, name);
  }
 
  public parseType(node: ExpressionNode | StatementNode, qualifiedName?: string): AbstractType | undefined {
    const typeName = node.findFirstExpression(Expressions.TypeName);
 
    let text = node.findFirstExpression(Expressions.Type)?.concatTokens().toUpperCase();
    if (text === undefined) {
      text = node.findFirstExpression(Expressions.TypeParam)?.concatTokens().toUpperCase();
    }
    if (text === undefined) {
      text = node.findFirstExpression(Expressions.TypeTable)?.concatTokens().toUpperCase();
      if (text?.startsWith("TYPE") === false && text?.startsWith("LIKE") === false) {
        text = "TYPE";
      }
    }
    if (text === undefined) {
      text = node.findFirstExpression(Expressions.FormParamType)?.concatTokens().toUpperCase();
    }
    if (text === undefined
        && node.get() instanceof Statements.Parameter
        && node.findDirectTokenByText("LIKE")) {
      text = "LIKE " + typeName?.concatTokens();
    }
    if (text === undefined) {
      text = "TYPE";
    }
 
    let found: AbstractType | undefined = undefined;
    if (text.startsWith("LIKE LINE OF ")) {
      const name = node.findFirstExpression(Expressions.FieldChain)?.concatTokens();
 
      let e = node.findFirstExpression(Expressions.Type);
      if (e === undefined) {
        e = node.findFirstExpression(Expressions.FormParamType);
      }
      if (e === undefined) {
        e = node.findFirstExpression(Expressions.FieldChain);
      }
 
      const type = this.resolveLikeName(e, false);
 
      if (type === undefined) {
        return new Types.UnknownType("Type error, could not resolve \"" + name + "\", parseType");
      } else if (type instanceof Types.TableType) {
        return type.getRowType();
      } else if (type instanceof Types.VoidType) {
        return type;
      } else {
        return new Types.UnknownType("Type error, not a table type " + name);
      }
    } else if (text.startsWith("LIKE REF TO ")) {
      const name = node.findFirstExpression(Expressions.FieldChain)?.concatTokens();
      const type = this.resolveLikeName(node.findFirstExpression(Expressions.Type), false);
      if (type === undefined) {
        return new Types.UnknownType("Type error, could not resolve \"" + name + "\", parseType");
      }
      return new Types.DataReference(type, name);
    } else if (text === "TYPE STANDARD TABLE"
        || text === "TYPE SORTED TABLE"
        || text === "TYPE HASHED TABLE"
        || text === "TYPE INDEX TABLE"
        || text === "TYPE ANY TABLE") {
      return new Types.TableType(new Types.AnyType(), {withHeader: node.concatTokens().toUpperCase().includes("WITH HEADER LINE"), keyType: Types.TableKeyType.default});
    } else if (text.startsWith("LIKE ")) {
      let sub = node.findFirstExpression(Expressions.Type);
      if (sub === undefined) {
        sub = node.findFirstExpression(Expressions.FormParamType);
      }
      if (sub === undefined) {
        sub = node.findFirstExpression(Expressions.TypeParam);
      }
      if (sub === undefined) {
        sub = node.findFirstExpression(Expressions.FieldChain);
      }
      if (sub === undefined) {
        sub = node.findFirstExpression(Expressions.TypeName);
      }
      found = this.resolveLikeName(sub);
 
      if (found && this.isOccurs(node)) {
        found = new Types.TableType(found, {withHeader: text.includes("WITH HEADER LINE"), keyType: Types.TableKeyType.default}, qualifiedName);
      }
    } else if (text.startsWith("TYPE LINE OF ")) {
      const sub = node.findFirstExpression(Expressions.TypeName);
      found = this.resolveTypeName(sub);
      if (found instanceof TypedIdentifier) {
        found = found.getType();
      }
      if (found instanceof Types.TableType) {
        return found.getRowType();
      } else if (found instanceof Types.VoidType) {
        return found;
      } else if (found instanceof Types.UnknownType) {
        return new Types.UnknownType("TYPE LINE OF, unknown type, " + found.getError());
      } else {
        return new Types.UnknownType("TYPE LINE OF, unexpected type, " + found?.constructor.name);
      }
    } else if (text.startsWith("TYPE REF TO ")) {
      found = this.resolveTypeRef(typeName);
    } else if (text.startsWith("TYPE")) {
      found = this.resolveTypeName(typeName, this.findLength(node), this.findDecimals(node), qualifiedName);
 
      const concat = node.concatTokens().toUpperCase();
      if (found && this.isOccurs(node)) {
        found = new Types.TableType(found, {withHeader: concat.includes(" WITH HEADER LINE"), keyType: Types.TableKeyType.default}, qualifiedName);
      } else if (found && concat.includes(" WITH HEADER LINE")) {
        if (found instanceof Types.VoidType) {
          found = new Types.TableType(found, {withHeader: true, keyType: Types.TableKeyType.default});
        } else if (!(found instanceof Types.TableType)) {
          throw new Error("WITH HEADER LINE can only be used with internal table");
        } else {
          found = new Types.TableType(found.getRowType(), {withHeader: true, keyType: Types.TableKeyType.default});
        }
      }
 
      if (found === undefined && typeName === undefined) {
        let length = 1;
 
        const len = node.findDirectExpression(Expressions.ConstantFieldLength);
        if (len) {
          const int = len.findDirectExpression(Expressions.Integer);
          if (int) {
            length = parseInt(int.concatTokens(), 10);
          }
        }
 
        found = new Types.CharacterType(length, {qualifiedName: qualifiedName}); // fallback
        if (this.isOccurs(node)) {
          found = new Types.TableType(found, {withHeader: concat.includes(" WITH HEADER LINE"), keyType: Types.TableKeyType.default}, qualifiedName);
        }
      }
 
    }
 
    return found;
  }
 
/////////////////////
 
  private isOccurs(node: ExpressionNode | StatementNode): boolean {
    if (node.findDirectTokenByText("OCCURS")) {
      return true;
    } else if (node.findFirstExpression(Expressions.TypeTable)?.findDirectTokenByText("OCCURS")) {
      return true;
    }
    return false;
  }
 
  // todo, rewrite this method
  private resolveTypeChain(expr: ExpressionNode): AbstractType | undefined {
 
    const chainText = expr.concatTokens().toUpperCase();
    if (chainText.includes("-")) {
      // workaround for stuff like "sy-repid"
      const built = this.scope.findType(chainText);
      if (built) {
        this.scope.addReference(expr.getFirstToken(), built, ReferenceType.TypeReference, this.filename);
        return built.getType();
      }
    } else if (chainText.includes("=>") === false && chainText.includes("-") === false) {
      return undefined;
    }
 
    let className: string | undefined;
    let rest = chainText;
    if (chainText.includes("=>")) {
      const split = chainText.split("=>");
      className = split[0];
      rest = split[1];
    } else if (chainText.includes("->")) {
      const split = chainText.split("->");
      className = split[0];
      rest = split[1];
    }
    const subs = rest.split("-");
    let foundType: AbstractType | undefined = undefined;
 
    if (className && chainText.includes("=>")) {
      const split = chainText.split("=>");
      const className = split[0];
 
    // the prefix might be itself
      if ((this.scope.getType() === ScopeType.Interface
          || this.scope.getType() === ScopeType.ClassDefinition)
          && this.scope.getName().toUpperCase() === className.toUpperCase()) {
        const foundId = this.scope.findType(subs[0]);
        foundType = foundId?.getType();
        if (foundType === undefined) {
          return new Types.UnknownType("Could not resolve type " + chainText);
        }
        this.scope.addReference(expr.getTokens()[2], foundId, ReferenceType.TypeReference, this.filename);
 
      } else {
    // lookup in local and global scope
        const obj = this.scope.findObjectDefinition(className);
        if (obj === undefined && this.scope.getDDIC().inErrorNamespace(className) === false) {
          this.scope.addReference(expr.getFirstToken(), undefined,
                                  ReferenceType.ObjectOrientedVoidReference, this.filename, {ooName: className.toUpperCase()});
          return new Types.VoidType(className);
        } else if (obj === undefined) {
          return new Types.UnknownType("Could not resolve top " + className + ", resolveTypeChain");
        }
        const type = obj instanceof ClassDefinition ? "CLAS" : "INTF";
 
        this.scope.addReference(expr.getFirstToken(), obj, ReferenceType.ObjectOrientedReference, this.filename,
                                {ooType: type, ooName: className});
 
        const byName = new ObjectOriented(this.scope).searchTypeName(obj, subs[0]);
        foundType = byName?.getType();
        if (byName === undefined || foundType === undefined) {
          return new Types.UnknownType(subs[0] + " not found in class or interface");
        }
        this.scope.addReference(expr.getTokens()[2], byName, ReferenceType.TypeReference, this.filename);
      }
    } else if (className && chainText.includes("->")) {
      const varVar = this.scope.findVariable(className);
      const foo = varVar?.getType();
      if (foo instanceof ObjectReferenceType) {
        const typeName = subs[0];
        let id = foo.getIdentifier();
 
        if (!(id instanceof ClassDefinition || id instanceof InterfaceDefinition)) {
          const found = this.scope.findObjectDefinition(foo.getIdentifierName());
          if (found) {
            id = found;
          } else {
            return new Types.UnknownType(foo.getIdentifierName() + " not found in scope");
          }
        }
 
        if (id instanceof ClassDefinition || id instanceof InterfaceDefinition) {
          const type = id instanceof ClassDefinition ? "CLAS" : "INTF";
          this.scope.addReference(expr.getFirstToken(), id, ReferenceType.ObjectOrientedReference, this.filename,
                                  {ooType: type, ooName: id.getName()});
          const byName = new ObjectOriented(this.scope).searchTypeName(id, typeName);
          foundType = byName?.getType();
          if (byName === undefined || foundType === undefined) {
            return new Types.UnknownType(typeName + " not found in class or interface");
          }
          this.scope.addReference(expr.getTokens()[2], byName, ReferenceType.TypeReference, this.filename);
        } else {
          return new Types.UnknownType("Not an object reference, " + className + ", " + id.constructor.name);
        }
      } else if (foo === undefined) {
        return new Types.UnknownType(className + " not found in scope");
      } else {
        return new Types.UnknownType("Not an object reference, " + className + ", " + foo.constructor.name);
      }
    } else {
      const found = this.scope.findType(subs[0]);
      foundType = found?.getType();
      if (foundType === undefined) {
        const typePoolType = this.scope.findTypePoolType(subs[0])?.getType();
        if (typePoolType) {
//          this.scope.addReference(typeName.getFirstToken(), typePoolType, ReferenceType.TypeReference, this.filename);
          foundType = typePoolType;
        }
 
        if (foundType === undefined) {
          const f = this.scope.getDDIC().lookupTableOrView(subs[0]);
          this.scope.getDDICReferences().addUsing(this.scope.getParentObj(),
                                                  {object: f.object, filename: this.filename, token: expr.getFirstToken()});
          if (f.type instanceof TypedIdentifier) {
            foundType = f.type.getType();
          } else {
            foundType = f.type;
          }
        }
 
      } else {
        this.scope.addReference(expr.getFirstToken(), found, ReferenceType.TypeReference, this.filename);
      }
      if (foundType === undefined && this.scope.getDDIC().inErrorNamespace(subs[0]) === false) {
        this.scope.addReference(expr.getFirstToken(), undefined, ReferenceType.VoidType, this.filename);
        return new Types.VoidType(subs[0]);
      } else if (foundType instanceof Types.VoidType) {
        this.scope.addReference(expr.getFirstToken(), undefined, ReferenceType.VoidType, this.filename);
        return foundType;
      } else if (foundType === undefined) {
        return new Types.UnknownType("Unknown type " + subs[0]);
      }
    }
 
    subs.shift();
    while (subs.length > 0) {
      if (foundType instanceof Types.UnknownType
          || foundType instanceof Types.VoidType) {
        return foundType;
      } else if (!(foundType instanceof Types.StructureType)) {
        return new Types.UnknownType("Not a structured type");
      }
      foundType = foundType.getComponentByName(subs[0]);
      if (foundType === undefined) {
        return new Types.UnknownType(`Field "${subs[0]}" not found in structure`);
      }
      subs.shift();
    }
 
    return foundType;
  }
 
  private resolveConstantValue(expr: ExpressionNode): string | undefined {
// todo: rewrite this method
    if (!(expr.get() instanceof Expressions.SimpleFieldChain)) {
      throw new Error("resolveConstantValue");
    }
 
    const firstNode = expr.getFirstChild()!;
    const firstToken = firstNode.getFirstToken();
    const firstName = firstToken.getStr();
    if (firstNode.get() instanceof Expressions.Field) {
      const found = this.scope.findVariable(firstName);
      const val = found?.getValue();
      if (typeof val === "string") {
        this.scope.addReference(firstToken, found, ReferenceType.DataReadReference, this.filename);
        return val;
      } else if (found?.getType() instanceof StructureType) {
        this.scope.addReference(firstToken, found, ReferenceType.DataReadReference, this.filename);
      }
      return undefined;
    } else if (firstNode.get() instanceof Expressions.ClassName
        && firstName.toLowerCase() === this.scope.getName().toLowerCase()
        && (this.scope.getType() === ScopeType.Interface
        || this.scope.getType() === ScopeType.ClassDefinition)) {
      const children = expr.getChildren();
      const token = children[2]?.getFirstToken();
      const found = this.scope.findVariable(token.getStr());
      const val = found?.getValue();
      if (typeof val === "string") {
        this.scope.addReference(firstToken, found, ReferenceType.DataReadReference, this.filename);
        return val;
      }
      return undefined;
    } else if (firstNode.get() instanceof Expressions.ClassName) {
      const obj = this.scope.findObjectDefinition(firstName);
      if (obj === undefined) {
        if (this.scope.existsObject(firstName).found === true) {
          return undefined;
        } else if (this.scope.getDDIC().inErrorNamespace(firstName) === true) {
          throw new Error("resolveConstantValue, not found: " + firstName);
        } else {
          this.scope.addReference(firstNode.getFirstToken(), undefined,
                                  ReferenceType.ObjectOrientedVoidReference, this.filename, {ooName: firstName.toUpperCase()});
          return undefined;
        }
      }
      const children = expr.getChildren();
      const token = children[2]?.getFirstToken();
      const attr = token.getStr();
      const c = new ObjectOriented(this.scope).searchConstantName(obj, attr);
      if (c instanceof ClassConstant) {
        this.scope.addReference(token, c, ReferenceType.DataReadReference, this.filename);
        const val = c.getValue();
        if (typeof val === "string") {
          return val;
        } else if (typeof val === "object" && children[4]) {
          const name = children[4].getFirstToken().getStr();
          if (val[name] !== undefined) {
            return val[name];
          }
        }
        return undefined;
      }
      throw new Error("resolveConstantValue, constant not found " + attr);

    } else {
      throw new Error("resolveConstantValue, unexpected structure");
    }
  }
 
  private resolveTypeRef(chain: ExpressionNode | undefined): AbstractType | undefined {
    if (chain === undefined) {
      return undefined;
    }
 
    const name = chain.getFirstToken().getStr();
    if (chain.getAllTokens().length === 1) {
      if (name.toUpperCase() === "OBJECT") {
        return new Types.GenericObjectReferenceType();
      }
      const search = this.scope.existsObject(name);
      if (search.found === true && search.id) {
        this.scope.addReference(chain.getFirstToken(), search.id, ReferenceType.ObjectOrientedReference, this.filename,
                                {ooType: search.ooType, ooName: name});
        return new Types.ObjectReferenceType(search.id, {qualifiedName: name, RTTIName: search.RTTIName});
      }
    }
 
    const found = this.resolveTypeName(chain);
    if (found && !(found instanceof Types.UnknownType) && !(found instanceof Types.VoidType)) {
      return new Types.DataReference(found);
    } else if (chain.concatTokens().toUpperCase() === "DATA") {
      return new Types.DataReference(new Types.AnyType());
    }
 
    if (this.scope.isBadiDef(name) === true) {
      return new Types.VoidType(name);
    }
 
    if (this.scope.getDDIC()?.inErrorNamespace(name) === false) {
//      this.scope.addReference(chain.getFirstToken(), undefined, ReferenceType.VoidType, this.filename);
      return new Types.VoidType(name);
    }
 
    return new Types.UnknownType("REF, unable to resolve " + name);
  }
 
  public findValue(node: StatementNode | ExpressionNode): string | undefined {
    const val = node.findFirstExpression(Expressions.Value);
    if (val === undefined) {
      throw new Error("VALUE missing in expression");
    }
 
    if (val.concatTokens().toUpperCase() === "VALUE IS INITIAL") {
      return undefined;
    }
 
    const constant = val.findFirstExpression(Expressions.Constant);
    if (constant) {
      const conc = val.findFirstExpression(Expressions.ConcatenatedConstant);
      if (conc) {
        const first = conc.getFirstToken().getStr().substring(0, 1);
        let result = "";
        for (const token of conc.getAllTokens()) {
          if (token.getStr() === "&") {
            continue;
          } else {
            result += token.getStr().substring(1, token.getStr().length - 1);
          }
        }
        return first + result + first;
      } else {
        return constant.concatTokens();
      }
    }
 
    const chain = val.findFirstExpression(Expressions.SimpleFieldChain);
    if (chain) {
      return this.resolveConstantValue(chain);
    }

    throw new Error("findValue, unexpected");
  }
 
  private findDecimals(node: StatementNode | ExpressionNode): number | undefined {
    const dec = node.findDirectExpression(Expressions.Decimals)?.findDirectExpression(Expressions.Integer)?.concatTokens();
    if (dec) {
      return parseInt(dec, 10);
    }
    return undefined;
  }
 
  private findLength(node: StatementNode | ExpressionNode): number | undefined {
    const val = node.findFirstExpression(Expressions.Length);
    const flen = node.findFirstExpression(Expressions.ConstantFieldLength);
 
    if (val && flen) {
      throw new Error("Only specify length once");
    }
 
    if (flen) {
      const cintExpr = flen.findFirstExpression(Expressions.Integer);
      if (cintExpr) {
        return this.parseInt(cintExpr.concatTokens());
      }

      const cchain = flen.findFirstExpression(Expressions.SimpleFieldChain);
      if (cchain) {
        const val = this.resolveConstantValue(cchain);
        return this.parseInt(val);
      }
    }
 
    if (val === undefined) {
      return 1;
    }
 
    const intExpr = val.findFirstExpression(Expressions.Integer);
    if (intExpr) {
      return this.parseInt(intExpr.concatTokens());
    }
 
    const strExpr = val.findFirstExpression(Expressions.ConstantString);
    if (strExpr) {
      return this.parseInt(strExpr.concatTokens());
    }
 
    const chain = val.findFirstExpression(Expressions.SimpleFieldChain);
    if (chain) {
      const val = this.resolveConstantValue(chain);
      return this.parseInt(val);
    }

    throw new Error("Unexpected, findLength");
  }
 
  private parseInt(text: string | undefined): number | undefined {
    if (text === undefined) {
      return undefined;
    }
 
    if (text.startsWith("'")) {
      text = text.split("'")[1];
    } else if (text.startsWith("`")) {
      text = text.split("`")[1];
    }
 
    return parseInt(text, 10);
  }
 
}