mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
10 lines
229 B
Go
10 lines
229 B
Go
|
package compiler
|
||
|
|
||
|
// Symbol represents a symbol in the symbol table.
|
||
|
type Symbol struct {
|
||
|
Name string
|
||
|
Scope SymbolScope
|
||
|
Index int
|
||
|
LocalAssigned bool // if the local symbol is assigned at least once
|
||
|
}
|