package compile
import "cuelang.org/go/internal/core/compile"
Index ¶
- func Expr(cfg *Config, r adt.Runtime, x ast.Expr) (adt.Conjunct, errors.Error)
- func Files(cfg *Config, r adt.Runtime, files ...*ast.File) (*adt.Vertex, errors.Error)
- func LookupRange(name string) adt.Expr
- type Config
Functions ¶
func Expr ¶
func Files ¶
Files compiles the given files as a single instance. It disregards the package names and it is the responsibility of the user to verify that the packages names are consistent.
Files may return a completed parse even if it has errors.
func LookupRange ¶
LookupRange returns a CUE expressions for the given predeclared identifier representing a range, such as uint8, int128, and float64.
Types ¶
type Config ¶
type Config struct { // Scope specifies a node in which to look up unresolved references. This // is useful for evaluating expressions within an already evaluated // configuration. // // TODO Scope *adt.Vertex // Imports allows unresolved identifiers to resolve to imports. // // Under normal circumstances, identifiers bind to import specifications, // which get resolved to an ImportReference. Use this option to automaically // resolve identifiers to imports. Imports func(x *ast.Ident) (pkgPath string) }
Config configures a compilation.
Source Files ¶
builtin.go compile.go errors.go label.go predeclared.go
- Version
- v0.3.0-alpha4
- Published
- Oct 3, 2020
- Platform
- windows/amd64
- Imports
- 12 packages
- Last checked
- 6 hours ago –
Tools for package owners.