All files / output cl_dd_table_area.clas.mjs

43.9% Statements 18/41
100% Branches 2/2
9.09% Functions 1/11
43.9% Lines 18/41

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 411x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x                     1x       1x       1x               1x 1x 1x
const {cl_dd_area} = await import("./cl_dd_area.clas.mjs");
const {cx_root} = await import("./cx_root.clas.mjs");
// cl_dd_table_area.clas.abap
class cl_dd_table_area extends cl_dd_area {
  static STATIC_SUPER = cl_dd_area;
  static INTERNAL_TYPE = 'CLAS';
  static INTERNAL_NAME = 'CL_DD_TABLE_AREA';
  static IMPLEMENTED_INTERFACES = [];
  static ATTRIBUTES = {};
  static METHODS = {"NEW_ROW": {"visibility": "U", "parameters": {"SAP_STYLE": {"type": () => {return new abap.types.Character(4);}, "is_optional": " ", "parm_kind": "I", "type_name": "AnyType"}, "SAP_COLOR": {"type": () => {return new abap.types.Character(4);}, "is_optional": " ", "parm_kind": "I", "type_name": "AnyType"}, "SAP_FONTSIZE": {"type": () => {return new abap.types.Character(4);}, "is_optional": " ", "parm_kind": "I", "type_name": "AnyType"}, "SAP_FONTSTYLE": {"type": () => {return new abap.types.Character(4);}, "is_optional": " ", "parm_kind": "I", "type_name": "AnyType"}, "SAP_EMPHASIS": {"type": () => {return new abap.types.Character(4);}, "is_optional": " ", "parm_kind": "I", "type_name": "AnyType"}}},
  "ADD_HEADING": {"visibility": "U", "parameters": {"TEXT": {"type": () => {return new abap.types.Character();}, "is_optional": " ", "parm_kind": "I", "type_name": "CLikeType"}}}};
  constructor() {
    const sup = super();
    this.me = new abap.types.ABAPObject();
    this.me.set(this);
    this.INTERNAL_ID = abap.internalIdCounter++;
    this.FRIENDS_ACCESS_INSTANCE = {
      "SUPER": sup.FRIENDS_ACCESS_INSTANCE,
      "new_row": this.new_row.bind(this),
      "add_heading": this.add_heading.bind(this),
    };
  }
  async constructor_(INPUT) {
    if (super.constructor_) { await super.constructor_(INPUT); }
    return this;
  }
  async add_heading(INPUT) {
    let text = INPUT?.text;
    return;
  }
  async new_row(INPUT) {
    let sap_style = INPUT?.sap_style || new abap.types.Character(4);
    let sap_color = INPUT?.sap_color || new abap.types.Character(4);
    let sap_fontsize = INPUT?.sap_fontsize || new abap.types.Character(4);
    let sap_fontstyle = INPUT?.sap_fontstyle || new abap.types.Character(4);
    let sap_emphasis = INPUT?.sap_emphasis || new abap.types.Character(4);
    return;
  }
}
abap.Classes['CL_DD_TABLE_AREA'] = cl_dd_table_area;
export {cl_dd_table_area};