Home
last modified time | relevance | path

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

/build/blueprint/
Dscope.go52 scope() *basicScope
57 type basicScope struct { struct
58 parent *basicScope argument
62 imports map[string]*basicScope argument
65 func newScope(parent *basicScope) *basicScope { argument
66 return &basicScope{
71 imports: make(map[string]*basicScope),
75 func makeRuleScope(parent *basicScope, argNames map[string]bool) *basicScope { argument
103 func (s *basicScope) LookupVariable(name string) (Variable, error) { argument
147 func (s *basicScope) IsRuleVisible(rule Rule) bool { argument
[all …]
Dpackage_ctx.go73 getScope() *basicScope
80 scope *basicScope
86 func (p *packageContext) getScope() *basicScope {
618 scope_ *basicScope
660 ruleScope := (*basicScope)(nil) // This will get created lazily
697 func (r *staticRule) scope() *basicScope {
723 scope_ *basicScope
766 ruleScope := (*basicScope)(nil) // This will get created lazily
807 func (r *ruleFunc) scope() *basicScope {
830 scope_ *basicScope
[all …]