Enum budvm::ir::ScopeSymbolKind
source · pub enum ScopeSymbolKind {
Argument,
Variable,
Function,
}Expand description
The kind of a ScopeSymbol.
Variants§
Argument
The symbol is an argument passed into the executing function.
Variable
The symbol is a local variable.
Function
The symbol is a function.