This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

17 行
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. ...