aboutsummaryrefslogtreecommitdiff
path: root/syntax/syntax.go
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/syntax.go')
-rw-r--r--syntax/syntax.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/syntax.go b/syntax/syntax.go
index 7850a41..2b1c965 100644
--- a/syntax/syntax.go
+++ b/syntax/syntax.go
@@ -217,7 +217,7 @@ type Literal struct {
Token Token // = STRING | INT
TokenPos Position
Raw string // uninterpreted text
- Value interface{} // = string | int
+ Value interface{} // = string | int64 | *big.Int
}
func (x *Literal) Span() (start, end Position) {