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 @@ -62,6 +62,9 @@ public class Languages {
/** Source-based frontend for C# and .NET */
public static final String CSHARPSRC = "CSHARPSRC";


public static final String RUST = "RUST";

public static Set<String> ALL = new HashSet<String>() {{
add(JAVA);
add(JAVASCRIPT);
Expand All @@ -82,6 +85,7 @@ public class Languages {
add(RUBYSRC);
add(SWIFTSRC);
add(CSHARPSRC);
add(RUST);
}};

}
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ object MetaData extends SchemaBase {
value = "CSHARPSRC",
valueType = ValueType.String,
comment = "Source-based frontend for C# and .NET"
).protoId(ProtoIds.CSharpSrc)
).protoId(ProtoIds.CSharpSrc),
Constant(name = "RUST", value = "RUST", valueType = ValueType.String, comment = "").protoId(ProtoIds.Rust)
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ object ProtoIds {
val Language = 19
val CSharpSrc = 19
val ABAP = 20
val Rust = 21
val Content = 20
val Code = 21
val EvalType = 21
Expand Down
Loading