Mercurial > lcfOS
diff python/ppci/c3/astnodes.py @ 394:988f3fb861e4
c3 code generator rewrite
author | Windel Bouwman |
---|---|
date | Thu, 22 May 2014 08:14:12 +0200 |
parents | 6ae782a085e0 |
children |
line wrap: on
line diff
--- a/python/ppci/c3/astnodes.py Sat May 17 21:17:40 2014 +0200 +++ b/python/ppci/c3/astnodes.py Thu May 22 08:14:12 2014 +0200 @@ -44,6 +44,10 @@ def Types(self): return self.innerScope.Types + @property + def Functions(self): + return self.innerScope.Functions + def __repr__(self): return 'MODULE {}'.format(self.name)