Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Variable ¶
type Variable struct {
Name ast.Identifier
BindNode ast.Node
Occurences []ast.Node
VariableKind VariableKind
LocRange ast.LocationRange
}
Variable is a representation of a variable somewhere in the code.
type VariableInfo ¶
type VariableInfo struct {
Variables []*Variable
// Variable information at every use site.
// More precisely it maps every *ast.Var to the variable.
VarAt map[ast.Node]*Variable
}
VariableInfo holds information about a variables from one file
type VariableKind ¶
type VariableKind int
VariableKind allows distinguishing various kinds of variables.
const ( // VarRegular is a "normal" variable with a definition in the code. VarRegular VariableKind = iota // VarParam is a function parameter. VarParam // VarStdlib is a special `std` variable. VarStdlib )
Click to show internal directories.
Click to hide internal directories.