This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 regels
274 B

  1. import types
  2. from typing import Optional
  3. from .visitors import Transformer
  4. class Ast(object):
  5. pass
  6. class AsList(object):
  7. pass
  8. def create_transformer(
  9. ast_module: types.ModuleType,
  10. transformer: Optional[Transformer]=None
  11. ) -> Transformer:
  12. ...