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.
 
 

15 line
237 B

  1. from typing import Optional, Tuple
  2. class RuleOptions:
  3. keep_all_tokens: bool
  4. expand1: bool
  5. priority: int
  6. template_source: Optional[str]
  7. empty_indices: Tuple[bool, ...]
  8. class Symbol:
  9. name: str
  10. is_term: bool