conf

package
v1.17.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 3, 2025 License: MIT Imports: 8 Imported by: 13

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// DefaultMemoryBudget represents default maximum allowed memory usage by the vm.VM.
	DefaultMemoryBudget uint = 1e6

	// DefaultMaxNodes represents default maximum allowed AST nodes by the compiler.
	DefaultMaxNodes uint = 1e4
)

Functions

func Env added in v1.17.0

func Env(env any) Nature

Types

type Checker added in v1.16.1

type Checker interface {
	Check()
}

type Config

type Config struct {
	EnvObject any
	Env       nature.Nature
	Expect    reflect.Kind
	ExpectAny bool
	Optimize  bool
	Strict    bool
	Profile   bool
	MaxNodes  uint
	ConstFns  map[string]reflect.Value
	Visitors  []ast.Visitor
	Functions FunctionsTable
	Builtins  FunctionsTable
	Disabled  map[string]bool // disabled builtins
}

func CreateNew

func CreateNew() *Config

CreateNew creates new config with default values.

func New

func New(env any) *Config

New creates new config with environment.

func (*Config) Check

func (c *Config) Check()

func (*Config) ConstExpr

func (c *Config) ConstExpr(name string)

func (*Config) IsOverridden added in v1.16.0

func (c *Config) IsOverridden(name string) bool

func (*Config) WithEnv

func (c *Config) WithEnv(env any)

type FunctionsTable added in v1.16.1

type FunctionsTable map[string]*builtin.Function

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL