File tree Expand file tree Collapse file tree
domainClasses/src/main/generated/io/shiftleft/codepropertygraph/generated
schema/src/main/scala/io/shiftleft/codepropertygraph/schema Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ public class Languages {
6262/** Source-based frontend for Swift */
6363public static final String SWIFTSRC = "SWIFTSRC" ;
6464
65+ /** Source-based frontend for C# and .NET */
66+ public static final String CSHARPSRC = "CSHARPSRC" ;
67+
6568
6669public static Set <String > ALL = new HashSet <String >() {{
6770add (JAVA );
@@ -82,6 +85,7 @@ public class Languages {
8285add (SOLIDITY );
8386add (RUBYSRC );
8487add (SWIFTSRC );
88+ add (CSHARPSRC );
8589}};
8690
8791}
Original file line number Diff line number Diff line change @@ -135,7 +135,13 @@ object MetaData extends SchemaBase {
135135 value = " SWIFTSRC" ,
136136 valueType = ValueType .String ,
137137 comment = " Source-based frontend for Swift"
138- ).protoId(18 )
138+ ).protoId(18 ),
139+ Constant (
140+ name = " CSHARPSRC" ,
141+ value = " CSHARPSRC" ,
142+ valueType = ValueType .String ,
143+ comment = " Source-based frontend for C# and .NET"
144+ ).protoId(19 )
139145 )
140146 }
141147}
You can’t perform that action at this time.
0 commit comments