Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
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"} )
Functions ¶
This section is empty.
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.
type Oracle ¶
type Oracle struct { }
Oracle implements different queries over ASTs, e.g., find definition.
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.
Click to show internal directories.
Click to hide internal directories.