Enum budvm::ir::ScopeSymbol
source · pub enum ScopeSymbol {
Argument(Argument),
Variable(Variable),
Function(Symbol),
}
Expand description
A registered symbol.
Variants§
Argument(Argument)
An argument passed into the executing function.
Variable(Variable)
A local variable.
Function(Symbol)
A function name.