package oracle
import "github.com/open-policy-agent/opa/internal/oracle"
Index ¶
Variables ¶
var ( // ErrNoDefinitionFound indicates the position was valid but no matching definition was found. ErrNoDefinitionFound = Error{Code: "oracle_no_definition_found"} // ErrNoMatchFound indicates the position was invalid. ErrNoMatchFound = Error{Code: "oracle_no_match_found"} )
Types ¶
type DefinitionQuery ¶
type DefinitionQuery struct { Filename string // name of file to search for position inside of Pos int // position to search for Modules map[string]*ast.Module // workspace modules; buffer may shadow a file inside the workspace Buffer []byte // buffer that overrides module with filename }
DefinitionQuery defines a Rego definition query.
type DefinitionQueryResult ¶
DefinitionQueryResult defines output of a definition query.
type Error ¶
type Error struct { Code string `json:"code"` }
Error defines the structure of errors returned by the oracle.
func (Error) Error ¶
type Oracle ¶
type Oracle struct { }
Oracle implements different queries over ASTs, e.g., find definition.
func New ¶
func New() *Oracle
New returns a new Oracle object.
func (*Oracle) FindDefinition ¶
func (o *Oracle) FindDefinition(q DefinitionQuery) (*DefinitionQueryResult, error)
FindDefinition returns the location of the definition referred to by the symbol at the position in q.
Source Files ¶
- Version
- v0.58.0
- Published
- Oct 26, 2023
- Platform
- js/wasm
- Imports
- 2 packages
- Last checked
- 17 minutes ago –
Tools for package owners.