Home
last modified time | relevance | path

Searched refs:basicScope (Results 1 – 2 of 2) sorted by relevance

/build/blueprint/
Dscope.go55 scope() *basicScope
60 type basicScope struct { struct
61 parent *basicScope argument
65 imports map[string]*basicScope argument
68 func newScope(parent *basicScope) *basicScope { argument
69 return &basicScope{
74 imports: make(map[string]*basicScope),
78 func makeRuleScope(parent *basicScope, argNames map[string]bool) *basicScope { argument
106 func (s *basicScope) LookupVariable(name string) (Variable, error) { argument
150 func (s *basicScope) IsRuleVisible(rule Rule) bool { argument
[all …]
Dpackage_ctx.go73 getScope() *basicScope
80 scope *basicScope
86 func (p *packageContext) getScope() *basicScope {
678 scope_ *basicScope
721 ruleScope := (*basicScope)(nil) // This will get created lazily
765 func (r *staticRule) scope() *basicScope {
791 scope_ *basicScope
835 ruleScope := (*basicScope)(nil) // This will get created lazily
883 func (r *ruleFunc) scope() *basicScope {
906 scope_ *basicScope
[all …]