Source code for equip.visitors.modules

# -*- coding: utf-8 -*-
"""
  equip.visitors.modules
  ~~~~~~~~~~~~~~~~~~~~~~

  Callback the visit method for each encountered module in the program.

  :copyright: (c) 2014 by Romain Gaucher (@rgaucher)
  :license: Apache 2, see LICENSE for more details.
"""

[docs]class ModuleVisitor(object): def __init__(self): pass
[docs] def visit(self, moduleDecl): pass