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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | const {cx_root} = await import("./cx_root.clas.mjs"); // cl_abap_format.clas.abap class cl_abap_format { static INTERNAL_TYPE = 'CLAS'; static INTERNAL_NAME = 'CL_ABAP_FORMAT'; static IMPLEMENTED_INTERFACES = []; static ATTRIBUTES = {"E_HTML_ATTR": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}, "E_HTML_JS": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}, "E_HTML_JS_HTML": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}, "E_HTML_TEXT": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}, "E_JSON_STRING": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}, "E_URL": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}, "E_XML_ATTR": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}, "E_XSS_ML": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}}; static METHODS = {}; constructor() { this.me = new abap.types.ABAPObject(); this.me.set(this); this.INTERNAL_ID = abap.internalIdCounter++; this.FRIENDS_ACCESS_INSTANCE = { }; this.e_html_attr = cl_abap_format.e_html_attr; this.e_html_js = cl_abap_format.e_html_js; this.e_html_js_html = cl_abap_format.e_html_js_html; this.e_html_text = cl_abap_format.e_html_text; this.e_json_string = cl_abap_format.e_json_string; this.e_url = cl_abap_format.e_url; this.e_xml_attr = cl_abap_format.e_xml_attr; this.e_xss_ml = cl_abap_format.e_xss_ml; } async constructor_(INPUT) { if (super.constructor_) { await super.constructor_(INPUT); } return this; } } abap.Classes['CL_ABAP_FORMAT'] = cl_abap_format; cl_abap_format.e_html_attr = new abap.types.Integer({qualifiedName: "I"}); cl_abap_format.e_html_attr.set(5); cl_abap_format.e_html_js = new abap.types.Integer({qualifiedName: "I"}); cl_abap_format.e_html_js.set(8); cl_abap_format.e_html_js_html = new abap.types.Integer({qualifiedName: "I"}); cl_abap_format.e_html_js_html.set(10); cl_abap_format.e_html_text = new abap.types.Integer({qualifiedName: "I"}); cl_abap_format.e_html_text.set(4); cl_abap_format.e_json_string = new abap.types.Integer({qualifiedName: "I"}); cl_abap_format.e_json_string.set(24); cl_abap_format.e_url = new abap.types.Integer({qualifiedName: "I"}); cl_abap_format.e_url.set(12); cl_abap_format.e_xml_attr = new abap.types.Integer({qualifiedName: "I"}); cl_abap_format.e_xml_attr.set(1); cl_abap_format.e_xss_ml = new abap.types.Integer({qualifiedName: "I"}); cl_abap_format.e_xss_ml.set(26); export {cl_abap_format}; |