Skip to content

Commit 3e9c83c

Browse files
authored
Bump flatgraph. (#1783)
1 parent 6dd37e7 commit 3e9c83c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name := "codepropertygraph"
22

33
// parsed by project/Versions.scala, updated by updateDependencies.sh
4-
val flatgraphVersion = "0.0.81"
4+
val flatgraphVersion = "0.0.86"
55

66
inThisBuild(
77
List(

domainClasses/src/main/generated/io/shiftleft/codepropertygraph/generated/GraphSchema.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ object GraphSchema extends flatgraph.Schema {
5050
"UNKNOWN"
5151
)
5252
val nodeKindByLabel = nodeLabels.zipWithIndex.toMap
53-
val edgeLabels = Array(
53+
val edgeLabels: Array[String] = Array(
5454
"ALIAS_OF",
5555
"ARGUMENT",
5656
"AST",
@@ -236,7 +236,7 @@ object GraphSchema extends flatgraph.Schema {
236236
size => new Array[flatgraph.GNode](size),
237237
size => new Array[flatgraph.GNode](size)
238238
)
239-
val normalNodePropertyNames = Array(
239+
val normalNodePropertyNames: Array[String] = Array(
240240
"ALIAS_TYPE_FULL_NAME",
241241
"ARGUMENT_INDEX",
242242
"ARGUMENT_NAME",

0 commit comments

Comments
 (0)