Commit 78f69612 authored by Stefan Behnel's avatar Stefan Behnel

make sure entry.all_entries() includes the defining entry

parent c4e00da2
......@@ -242,6 +242,9 @@ class InnerEntry(Entry):
def __getattr__(self, name):
return getattr(self.defining_entry, name)
def all_entries(self):
return self.defining_entry.all_entries()
class Scope(object):
# name string Unqualified name
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment