1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-12 20:27:30 +08:00
otto/parser/scope.go
Steven Hartland 5d81e9e02d
chore: rename _parser (#483)
Rename _parser -> parser missed in previous refactor.
2022-12-07 00:23:10 +00:00

45 lines
800 B
Go

package parser
import (
"github.com/robertkrimen/otto/ast"
)
type scope struct {
outer *scope
allowIn bool
inIteration bool
inSwitch bool
inFunction bool
declarationList []ast.Declaration
labels []string
}
func (p *parser) openScope() {
p.scope = &scope{
outer: p.scope,
allowIn: true,
}
}
func (p *parser) closeScope() {
p.scope = p.scope.outer
}
func (p *scope) declare(declaration ast.Declaration) {
p.declarationList = append(p.declarationList, declaration)
}
func (p *scope) hasLabel(name string) bool {
for _, label := range p.labels {
if label == name {
return true
}
}
if p.outer != nil && !p.inFunction {
// Crossing a function boundary to look for a label is verboten
return p.outer.hasLabel(name)
}
return false
}