Skip to content

Commit

Permalink
update abaplint to latest + fixes (#11)
Browse files Browse the repository at this point in the history
* update abaplint to latest

* implement methods

* add if_t100_dyn_msg
  • Loading branch information
larshp authored Sep 2, 2019
1 parent bd0fd1e commit 2ffd3ea
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 4 deletions.
14 changes: 10 additions & 4 deletions abaplint.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
"global": {
"version": "v753",
"files": "/src/**/*.*",
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true,
"applyUnspecifiedRules": true
},
"dependencies": [],
"syntax": {
"version": "v753",
"errorNamespace": "",
"globalConstants": [],
"globalMacros": []
},
"rules": {
"7bit_ascii": {
"enabled": true,
Expand All @@ -28,8 +34,7 @@
},
"check_variables": {
"enabled": true,
"exclude": [],
"errorNamespace": "^(Z|Y)"
"exclude": []
},
"class_attribute_names": {
"enabled": false,
Expand Down Expand Up @@ -225,7 +230,8 @@
"tran": "^Z",
"enqu": "^EZ",
"auth": "^Z",
"pinf": "^Z"
"pinf": "^Z",
"idoc": "^Z"
},
"obsolete_statement": {
"enabled": true,
Expand Down
12 changes: 12 additions & 0 deletions src/ci/cl_ci_collector_root.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,16 @@ ENDCLASS.

CLASS cl_ci_collector_root IMPLEMENTATION.

METHOD if_ci_collector~put_attributes.
ENDMETHOD.

METHOD if_ci_collector~get_attributes.
ENDMETHOD.

METHOD if_ci_collector~collect.
ENDMETHOD.

METHOD if_ci_collector~query_attributes.
ENDMETHOD.

ENDCLASS.
9 changes: 9 additions & 0 deletions src/if_t100_dyn_msg.intf.abap
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
INTERFACE if_t100_dyn_msg.

DATA msgv1 TYPE string.
DATA msgv2 TYPE string.
DATA msgv3 TYPE string.
DATA msgv4 TYPE string.
DATA msgty TYPE string.

ENDINTERFACE.
15 changes: 15 additions & 0 deletions src/if_t100_dyn_msg.intf.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_INTF" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<VSEOINTERF>
<CLSNAME>if_t100_dyn_msg</CLSNAME>
<LANGU>E</LANGU>
<DESCRIPT>if_t100_dyn_msg</DESCRIPT>
<EXPOSURE>2</EXPOSURE>
<STATE>1</STATE>
<UNICODE>X</UNICODE>
</VSEOINTERF>
</asx:values>
</asx:abap>
</abapGit>

0 comments on commit 2ffd3ea

Please sign in to comment.