Skip to content

Commit

Permalink
Add handling for Singleton case of DynamicValue
Browse files Browse the repository at this point in the history
  • Loading branch information
BijenderKumar1 committed Jun 25, 2024
1 parent fb1994a commit ba471e6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ sealed trait DynamicValue {
case DynamicValue.BothValue(left, right) => 31 * left.hashCode() + right.hashCode()
case DynamicValue.DynamicAst(ast) => ast.hashCode()
case DynamicValue.Error(message) => message.hashCode()
case DynamicValue.Singleton(instance) => instance.hashCode()
}

}
Expand Down

0 comments on commit ba471e6

Please sign in to comment.