diff --git a/schema/src/main/scala/io/shiftleft/codepropertygraph/schema/MetaData.scala b/schema/src/main/scala/io/shiftleft/codepropertygraph/schema/MetaData.scala index 9962db5bc..e6ef3d268 100644 --- a/schema/src/main/scala/io/shiftleft/codepropertygraph/schema/MetaData.scala +++ b/schema/src/main/scala/io/shiftleft/codepropertygraph/schema/MetaData.scala @@ -94,7 +94,7 @@ object MetaData extends SchemaBase { valueType = ValueType.String, comment = "generic reverse engineering framework" ).protoId(ProtoIds.Ghidra), - Constant(name = "KOTLIN", value = "KOTLIN", valueType = ValueType.String, comment = "").protoId(11), + Constant(name = "KOTLIN", value = "KOTLIN", valueType = ValueType.String, comment = "").protoId(ProtoIds.Kotlin), Constant( name = "NEWC", value = "NEWC", diff --git a/schema/src/main/scala/io/shiftleft/codepropertygraph/schema/ProtoIds.scala b/schema/src/main/scala/io/shiftleft/codepropertygraph/schema/ProtoIds.scala index 92996bae2..a7a2f9560 100644 --- a/schema/src/main/scala/io/shiftleft/codepropertygraph/schema/ProtoIds.scala +++ b/schema/src/main/scala/io/shiftleft/codepropertygraph/schema/ProtoIds.scala @@ -54,6 +54,7 @@ object ProtoIds { val Try = 10 val Ref = 10 val Ghidra = 10 + val Kotlin = 11 val ReadOnly = 11 val Throw = 11 val ColumnNumber = 11