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
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.1.20"
val flatgraphVersion = "0.1.21"

inThisBuild(
List(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,14 +274,17 @@ object PropertyNames {
*/
val Version: String = "VERSION"

/** generic node base trait - use if you want to be explicitly unspecific */
val Anynode: String = "AnyNode"
/** /** This is a contained node */ */
val Evidence: String = "evidence"

/** This node represents a key value pair, where both the key and the value are strings. */
val KeyValuePair: String = "KEY_VALUE_PAIR"
/** /** This is a contained node */ */
val Keyvaluepairs: String = "keyValuePairs"

/** This node represents a tag. */
val Tag: String = "TAG"
/** /** This is a contained node */ */
val Node: String = "node"

/** /** This is a contained node */ */
val Tag: String = "tag"

val All: Set[String] = new HashSet[String](
Seq(
Expand Down Expand Up @@ -338,9 +341,9 @@ object PropertyNames {
Value,
Variable,
Version,
Anynode,
KeyValuePair,
Anynode,
Evidence,
Keyvaluepairs,
Node,
Tag
).asJava
)
Expand Down