1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/runtime/expressions/literals/int.go

18 lines
352 B
Go
Raw Normal View History

2018-09-18 22:42:38 +02:00
package literals
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
)
type IntLiteral int
func NewIntLiteral(value int) IntLiteral {
return IntLiteral(value)
}
2018-10-05 23:20:48 +02:00
func (l IntLiteral) Exec(_ context.Context, _ *core.Scope) (core.Value, error) {
2018-09-18 22:42:38 +02:00
return values.NewInt(int(l)), nil
}