All files / output zcl_abapgit_diff_factory.clas.mjs

50% Statements 15/30
100% Branches 2/2
16.66% Functions 1/6
50% Lines 15/30

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 301x 1x 1x 1x 1x 1x 1x 1x 1x             1x       1x     1x         1x 1x 1x
const {cx_root} = await import("./cx_root.clas.mjs");
// zcl_abapgit_diff_factory.clas.abap
class zcl_abapgit_diff_factory {
  static INTERNAL_TYPE = 'CLAS';
  static INTERNAL_NAME = 'ZCL_ABAPGIT_DIFF_FACTORY';
  static IMPLEMENTED_INTERFACES = [];
  static ATTRIBUTES = {};
  static METHODS = {"GET": {"visibility": "U", "parameters": {"RI_DIFF": {"type": () => {return new abap.types.ABAPObject({qualifiedName: "ZIF_ABAPGIT_DIFF", RTTIName: "\\INTERFACE=ZIF_ABAPGIT_DIFF"});}, "is_optional": " "}}}};
  constructor() {
    this.me = new abap.types.ABAPObject();
    this.me.set(this);
    this.INTERNAL_ID = abap.internalIdCounter++;
    this.FRIENDS_ACCESS_INSTANCE = {
    };
  }
  async constructor_(INPUT) {
    if (super.constructor_) { await super.constructor_(INPUT); }
    return this;
  }
  async get() {
    return zcl_abapgit_diff_factory.get();
  }
  static async get() {
    let ri_diff = new abap.types.ABAPObject({qualifiedName: "ZIF_ABAPGIT_DIFF", RTTIName: "\\INTERFACE=ZIF_ABAPGIT_DIFF"});
    ri_diff.set(await (new abap.Classes['ZCL_ABAPGIT_DIFF']()).constructor_());
    return ri_diff;
  }
}
abap.Classes['ZCL_ABAPGIT_DIFF_FACTORY'] = zcl_abapgit_diff_factory;
export {zcl_abapgit_diff_factory};