(s: str)
| 27 | |
| 28 | # Helper: build a Lean.Name from a dotted string |
| 29 | def mk_name(s: str): |
| 30 | parts = s.split(".") |
| 31 | n = Name.anonymous |
| 32 | for p in parts: |
| 33 | n = Name.str(n, p) |
| 34 | return n |
| 35 | |
| 36 | # Helper: build an elaborated const |
| 37 | def mk_const(s: str): |