chore(variables): support integer interpolation for all values
This commit is contained in:
parent
acbccb0a93
commit
b40723b0b8
4 changed files with 26 additions and 16 deletions
|
@ -70,6 +70,9 @@ type VariablePromise struct {
|
|||
func (s VariablePromise) Bytes() []byte {
|
||||
return s.value.Bytes()
|
||||
}
|
||||
func (s VariablePromise) Int() (int, error) {
|
||||
return s.value.Int()
|
||||
}
|
||||
func (s VariablePromise) String() string {
|
||||
return s.value.String()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue