Remove unused (and incorrect) 2-arity of token fn

This commit is contained in:
Scott Richmond 2022-05-24 17:01:44 -04:00
parent b1284f3338
commit 1079bb8028

View File

@ -1,11 +1,9 @@
(ns ludus.token)
(defn token
([type text]
(token type text nil 1))
([type text literal line start]
[type text literal line start]
{::type type
::lexeme text
::literal literal
::line line
::start start}))
::start start})