Skip to content

Commit 66866d6

Browse files
authored
ABAP init (#1840)
1 parent 7f7553d commit 66866d6

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

domainClasses/src/main/generated/io/shiftleft/codepropertygraph/generated/Languages.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ public class Languages {
1818
public static final String CSHARP = "CSHARP";
1919

2020

21+
public static final String ABAP = "ABAP";
22+
23+
2124
public static final String C = "C";
2225

2326

@@ -64,6 +67,7 @@ public class Languages {
6467
add(JAVASCRIPT);
6568
add(GOLANG);
6669
add(CSHARP);
70+
add(ABAP);
6771
add(C);
6872
add(PYTHON);
6973
add(LLVM);

schema/src/main/scala/io/shiftleft/codepropertygraph/schema/MetaData.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ object MetaData extends SchemaBase {
8282
.protoId(ProtoIds.JavaScript),
8383
Constant(name = "GOLANG", value = "GOLANG", valueType = ValueType.String, comment = "").protoId(ProtoIds.Golang),
8484
Constant(name = "CSHARP", value = "CSHARP", valueType = ValueType.String, comment = "").protoId(ProtoIds.CSharp),
85+
Constant(name = "ABAP", value = "ABAP", valueType = ValueType.String, comment = "").protoId(ProtoIds.ABAP),
8586
Constant(name = "C", value = "C", valueType = ValueType.String, comment = "").protoId(ProtoIds.C),
8687
Constant(name = "PYTHON", value = "PYTHON", valueType = ValueType.String, comment = "").protoId(ProtoIds.Python),
8788
Constant(name = "LLVM", value = "LLVM", valueType = ValueType.String, comment = "").protoId(ProtoIds.LLVM),

schema/src/main/scala/io/shiftleft/codepropertygraph/schema/ProtoIds.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ object ProtoIds {
8282
val Cfg = 19
8383
val Language = 19
8484
val CSharpSrc = 19
85+
val ABAP = 20
8586
val Content = 20
8687
val Code = 21
8788
val EvalType = 21

0 commit comments

Comments
 (0)