summary refs log tree commit diff stats
path: root/tests/lexer
ModeNameSize
-rw-r--r--thexlit.nim142log stats plain blame
-rw-r--r--thexrange.nim85log stats plain blame
-rw-r--r--tident.nim487log stats plain blame
-rw-r--r--tind1.nim358log stats plain blame
-rw-r--r--tindent1.nim680log stats plain blame
-rw-r--r--tlexer.nim1480log stats plain blame
-rw-r--r--tmissingnl.nim160log stats plain blame
-rw-r--r--tstrlits.nim344log stats plain blame
-rw-r--r--tunderscores.nim189log stats plain blame
'" line: 20 """ # bug #3158 type MyData = object x: int template newDataWindow(data: ref MyData): untyped = proc testProc(data: ref MyData) = echo "Hello, ", data.x testProc(data) var d: ref MyData new(d) d.x = 10 newDataWindow(d)