Skip to content

Commit

Permalink
feat(variable): add DebugValue data class
Browse files Browse the repository at this point in the history
Introduce DebugValue data class implementing the Variable interface to support debug-specific variable handling.
  • Loading branch information
phodal committed Jan 6, 2025
1 parent 03a719a commit 5c9b0b7
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@ interface Variable {
val variableName: String
val description: String
var value: Any?
}
}

data class DebugValue(
override val variableName: String,
override var value: Any?,
override val description: String,
) :Variable

0 comments on commit 5c9b0b7

Please # to comment.