aboutsummaryrefslogtreecommitdiff
path: root/Spv.Generator/LiteralInteger.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Spv.Generator/LiteralInteger.cs')
-rw-r--r--Spv.Generator/LiteralInteger.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Spv.Generator/LiteralInteger.cs b/Spv.Generator/LiteralInteger.cs
index 3193ed6e..22cb5484 100644
--- a/Spv.Generator/LiteralInteger.cs
+++ b/Spv.Generator/LiteralInteger.cs
@@ -99,5 +99,7 @@ namespace Spv.Generator
{
return obj is LiteralInteger literalInteger && Equals(literalInteger);
}
+
+ public override string ToString() => $"{_integerType} {_data}";
}
}