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