diff --git a/Sources/Common/ProgramTypes.swift b/Sources/Common/ProgramTypes.swift index 027067f..ccd1cd9 100644 --- a/Sources/Common/ProgramTypes.swift +++ b/Sources/Common/ProgramTypes.swift @@ -64,7 +64,7 @@ public class Variable: TypedIdentifier { } public override var description: String { - return "\(super.description) = \(value) \(constant ? "(constant)" : "")" + return "\(super.description) = \(value?.description ?? "Missing Value") \(constant ? "(constant)" : "")" } public var value_type: P4Value? {