Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public class Languages {
public static final String CSHARP = "CSHARP";


public static final String ABAP = "ABAP";


public static final String C = "C";


Expand Down Expand Up @@ -64,6 +67,7 @@ public class Languages {
add(JAVASCRIPT);
add(GOLANG);
add(CSHARP);
add(ABAP);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

better add this at the very end? not entirely sure, but this might have an impact on the other IDs. which might not be a problem, but better safe than sorry...?

Copy link
Contributor Author

@nikoqwietai nikoqwietai Mar 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It gets sorted at that point when running:

sbt clean stage test scalafmt

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah ok

add(C);
add(PYTHON);
add(LLVM);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ object MetaData extends SchemaBase {
.protoId(ProtoIds.JavaScript),
Constant(name = "GOLANG", value = "GOLANG", valueType = ValueType.String, comment = "").protoId(ProtoIds.Golang),
Constant(name = "CSHARP", value = "CSHARP", valueType = ValueType.String, comment = "").protoId(ProtoIds.CSharp),
Constant(name = "ABAP", value = "ABAP", valueType = ValueType.String, comment = "").protoId(ProtoIds.ABAP),
Constant(name = "C", value = "C", valueType = ValueType.String, comment = "").protoId(ProtoIds.C),
Constant(name = "PYTHON", value = "PYTHON", valueType = ValueType.String, comment = "").protoId(ProtoIds.Python),
Constant(name = "LLVM", value = "LLVM", valueType = ValueType.String, comment = "").protoId(ProtoIds.LLVM),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ object ProtoIds {
val Cfg = 19
val Language = 19
val CSharpSrc = 19
val ABAP = 20
val Content = 20
val Code = 21
val EvalType = 21
Expand Down