Got continous parsing working

This commit is contained in:
Florian Schroedl
2022-10-17 15:30:17 +02:00
parent fe2b7d065d
commit 065b298d1f
3 changed files with 25 additions and 2 deletions

View File

@@ -83,6 +83,12 @@ proc tryTokenize*[T](
),
))
# -- Stringifiers
func pprint[T](x: Builder): string =
&"""Builder()
"""
when isMainModule:
type TestStringBuilderT* = string
type TestStringBuilder* = Builder[TestStringBuilderT]