Searched defs:basicScope (Results 1 – 1 of 1) sorted by relevance
60 type basicScope struct { struct61 parent *basicScope62 variables map[string]Variable63 pools map[string]Pool64 rules map[string]Rule65 imports map[string]*basicScope68 func newScope(parent *basicScope) *basicScope {78 func makeRuleScope(parent *basicScope, argNames map[string]bool) *basicScope {106 func (s *basicScope) LookupVariable(name string) (Variable, error) {150 func (s *basicScope) IsRuleVisible(rule Rule) bool {[all …]