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 | 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"); // kernel_internal_name.clas.abap class kernel_internal_name { static INTERNAL_TYPE = 'CLAS'; static INTERNAL_NAME = 'KERNEL_INTERNAL_NAME'; static IMPLEMENTED_INTERFACES = []; static ATTRIBUTES = {}; static METHODS = {"INTERNAL_TO_RTTI": {"visibility": "U", "parameters": {"RV_RTTI": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " "}, "IV_INTERNAL": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " "}}}, "RTTI_TO_INTERNAL": {"visibility": "U", "parameters": {"RV_INTERNAL": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " "}, "IV_RTTI": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "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 internal_to_rtti(INPUT) { return kernel_internal_name.internal_to_rtti(INPUT); } static async internal_to_rtti(INPUT) { let rv_rtti = new abap.types.String({qualifiedName: "STRING"}); let iv_internal = INPUT?.iv_internal; if (iv_internal?.getQualifiedName === undefined || iv_internal.getQualifiedName() !== "STRING") { iv_internal = undefined; } if (iv_internal === undefined) { iv_internal = new abap.types.String({qualifiedName: "STRING"}).set(INPUT.iv_internal); } rv_rtti.set(iv_internal); if (abap.compare.cp(rv_rtti, abap.CharacterFactory.get(7, '*CLAS-*'))) { abap.statements.replace({target: rv_rtti, all: false, with: abap.CharacterFactory.get(12, '\\CLASS#POOL='), of: abap.CharacterFactory.get(5, 'CLAS-')}); abap.statements.replace({target: rv_rtti, all: false, with: abap.CharacterFactory.get(7, '\\CLASS='), of: abap.CharacterFactory.get(1, '-')}); abap.statements.replace({target: rv_rtti, all: false, with: abap.CharacterFactory.get(1, '-'), of: abap.CharacterFactory.get(1, '#')}); } else { rv_rtti.set(abap.operators.concat(abap.CharacterFactory.get(7, '\\CLASS='),rv_rtti)); } return rv_rtti; } async rtti_to_internal(INPUT) { return kernel_internal_name.rtti_to_internal(INPUT); } static async rtti_to_internal(INPUT) { let rv_internal = new abap.types.String({qualifiedName: "STRING"}); let iv_rtti = INPUT?.iv_rtti; if (iv_rtti?.getQualifiedName === undefined || iv_rtti.getQualifiedName() !== "STRING") { iv_rtti = undefined; } if (iv_rtti === undefined) { iv_rtti = new abap.types.String({qualifiedName: "STRING"}).set(INPUT.iv_rtti); } rv_internal.set(iv_rtti); if (abap.compare.cp(rv_internal, abap.CharacterFactory.get(8, '\\CLASS=*'))) { abap.statements.replace({target: rv_internal, all: false, with: abap.CharacterFactory.get(1, ''), of: abap.CharacterFactory.get(7, '\\CLASS=')}); } else if (abap.compare.cp(rv_internal, abap.CharacterFactory.get(13, '\\CLASS-POOL=*'))) { abap.statements.replace({target: rv_internal, all: false, with: abap.CharacterFactory.get(5, 'CLAS-'), of: abap.CharacterFactory.get(12, '\\CLASS-POOL=')}); abap.statements.replace({target: rv_internal, all: false, with: abap.CharacterFactory.get(1, '-'), of: abap.CharacterFactory.get(7, '\\CLASS=')}); abap.statements.replace({target: rv_internal, all: false, with: abap.CharacterFactory.get(1, '-'), of: abap.CharacterFactory.get(11, '\\INTERFACE=')}); } return rv_internal; } } abap.Classes['KERNEL_INTERNAL_NAME'] = kernel_internal_name; export {kernel_internal_name}; |