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) (ns ludus.token)
(defn token (defn token
([type text] [type text literal line start]
(token type text nil 1))
([type text literal line start]
{::type type {::type type
::lexeme text ::lexeme text
::literal literal ::literal literal
::line line ::line line
::start start})) ::start start})