Searched defs:basicScope (Results 1 – 1 of 1) sorted by relevance
57 type basicScope struct { struct58 parent *basicScope59 variables map[string]Variable60 pools map[string]Pool61 rules map[string]Rule62 imports map[string]*basicScope65 func newScope(parent *basicScope) *basicScope {75 func makeRuleScope(parent *basicScope, argNames map[string]bool) *basicScope {103 func (s *basicScope) LookupVariable(name string) (Variable, error) {147 func (s *basicScope) IsRuleVisible(rule Rule) bool {[all …]