mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
12 lines
244 B
Go
12 lines
244 B
Go
package compiler_test
|
|
|
|
import (
|
|
"context"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
)
|
|
|
|
func NOOP(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
return values.None, nil
|
|
}
|