Skip to content

Commit 24cd0d1

Browse files
authored
init (#1)
1 parent bfef0e1 commit 24cd0d1

37 files changed

+580
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: test
2+
3+
on:
4+
push
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
- run: npm ci
17+
- run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

abaplint.jsonc

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"global": {
3+
"files": "/src/**/*.*"
4+
},
5+
"dependencies": [
6+
{
7+
"url": "https://github.com/open-abap/open-abap-core",
8+
"folder": "/deps",
9+
"files": "/src/**/*.*"
10+
}
11+
],
12+
"syntax": {
13+
"version": "Cloud",
14+
"errorNamespace": "."
15+
},
16+
"rules": {
17+
"begin_end_names": true,
18+
"cds_parser_error": true,
19+
"check_ddic": true,
20+
"strict_sql": true,
21+
"sql_escape_host_variables": true,
22+
"check_include": true,
23+
"check_syntax": true,
24+
"cloud_types": true,
25+
"space_before_colon": true,
26+
"space_before_dot": true,
27+
"align_parameters": true,
28+
"align_type_expressions": true,
29+
"sy_modification": true,
30+
"global_class": true,
31+
"implement_methods": true,
32+
"method_implemented_twice": true,
33+
"parser_error": true,
34+
"superclass_final": true,
35+
"unknown_types": true,
36+
"xml_consistency": true
37+
}
38+
}

package-lock.json

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "open-abap-rap",
3+
"version": "1.0.0",
4+
"description": "open-abap-rap",
5+
"private": true,
6+
"scripts": {
7+
"test": "abaplint"
8+
},
9+
"author": "",
10+
"license": "",
11+
"dependencies": {
12+
"@abaplint/cli": "^2.113.143"
13+
}
14+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CLASS cl_abap_behavior_handler DEFINITION PUBLIC.
2+
PUBLIC SECTION.
3+
ENDCLASS.
4+
5+
CLASS cl_abap_behavior_handler IMPLEMENTATION.
6+
7+
ENDCLASS.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0">
3+
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
4+
<asx:values>
5+
<VSEOCLASS>
6+
<CLSNAME>CL_ABAP_BEHAVIOR_HANDLER</CLSNAME>
7+
<LANGU>E</LANGU>
8+
<DESCRIPT>CL_ABAP_BEHAVIOR_HANDLER</DESCRIPT>
9+
<STATE>1</STATE>
10+
<CLSCCINCL>X</CLSCCINCL>
11+
<FIXPT>X</FIXPT>
12+
<UNICODE>X</UNICODE>
13+
</VSEOCLASS>
14+
</asx:values>
15+
</asx:abap>
16+
</abapGit>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CLASS cl_abap_behavior_saver DEFINITION PUBLIC.
2+
PUBLIC SECTION.
3+
ENDCLASS.
4+
5+
CLASS cl_abap_behavior_saver IMPLEMENTATION.
6+
7+
ENDCLASS.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0">
3+
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
4+
<asx:values>
5+
<VSEOCLASS>
6+
<CLSNAME>CL_ABAP_BEHAVIOR_SAVER</CLSNAME>
7+
<LANGU>E</LANGU>
8+
<DESCRIPT>CL_ABAP_BEHAVIOR_SAVER</DESCRIPT>
9+
<STATE>1</STATE>
10+
<CLSCCINCL>X</CLSCCINCL>
11+
<FIXPT>X</FIXPT>
12+
<UNICODE>X</UNICODE>
13+
</VSEOCLASS>
14+
</asx:values>
15+
</asx:abap>
16+
</abapGit>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CLASS cl_abap_behavior_saver_failed DEFINITION PUBLIC.
2+
PUBLIC SECTION.
3+
ENDCLASS.
4+
5+
CLASS cl_abap_behavior_saver_failed IMPLEMENTATION.
6+
7+
ENDCLASS.

0 commit comments

Comments
 (0)