# File lib/puppet/parser/scope.rb, line 265
265:     def scope_path
266:         if parent
267:             [self, parent.scope_path].flatten.compact
268:         else
269:             [self]
270:         end
271:     end