()
| 479 | func (m IntValue) Val() int64 { return m.v } |
| 480 | func (m IntValue) MarshalJSON() ([]byte, error) { return marshalFloat(float64(m.v)) } |
| 481 | func (m IntValue) NumberValue() NumberValue { return NewNumberValue(float64(m.v)) } |
| 482 | func (m IntValue) ToString() string { |
| 483 | if m.v == math.MinInt32 { |
| 484 | return "" |