Skip to content

Commit

Permalink
Bump flatgraph.
Browse files Browse the repository at this point in the history
  • Loading branch information
ml86 committed Aug 5, 2024
1 parent 6dd37e7 commit d4733d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name := "codepropertygraph"

// parsed by project/Versions.scala, updated by updateDependencies.sh
val flatgraphVersion = "0.0.81"
val flatgraphVersion = "0.0.86"

inThisBuild(
List(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ object GraphSchema extends flatgraph.Schema {
"UNKNOWN"
)
val nodeKindByLabel = nodeLabels.zipWithIndex.toMap
val edgeLabels = Array(
val edgeLabels: Array[String] = Array(
"ALIAS_OF",
"ARGUMENT",
"AST",
Expand Down Expand Up @@ -236,7 +236,7 @@ object GraphSchema extends flatgraph.Schema {
size => new Array[flatgraph.GNode](size),
size => new Array[flatgraph.GNode](size)
)
val normalNodePropertyNames = Array(
val normalNodePropertyNames: Array[String] = Array(
"ALIAS_TYPE_FULL_NAME",
"ARGUMENT_INDEX",
"ARGUMENT_NAME",
Expand Down

0 comments on commit d4733d9

Please sign in to comment.