Mercurial > lcfOS
comparison python/c3/builder.py @ 255:7416c923a02a
Added more logging
author | Windel Bouwman |
---|---|
date | Sun, 04 Aug 2013 15:10:10 +0200 |
parents | bd26dc13f270 |
children | e64bae57cda8 |
comparison
equal
deleted
inserted
replaced
254:bd26dc13f270 | 255:7416c923a02a |
---|---|
34 | 34 |
35 def parse(self, src): | 35 def parse(self, src): |
36 pkg = self.parser.parseSource(src) | 36 pkg = self.parser.parseSource(src) |
37 if not pkg: | 37 if not pkg: |
38 return | 38 return |
39 logging.getLogger('c3').info('Source parsed') | |
40 | 39 |
41 # TODO: merge the two below? | 40 # TODO: merge the two below? |
42 #AstPrinter().printAst(pkg) | 41 #AstPrinter().printAst(pkg) |
43 if not self.al.analyzePackage(pkg, self): | 42 if not self.al.analyzePackage(pkg, self): |
44 return | 43 return |