From c5a72912df894ede607203a472c52bed44e03bf5 Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Tue, 2 May 2023 19:43:57 -0400 Subject: [PATCH] Dequalify token keywords --- src/ludus/token.clj | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ludus/token.clj b/src/ludus/token.clj index e156751..5188fbd 100644 --- a/src/ludus/token.clj +++ b/src/ludus/token.clj @@ -2,8 +2,8 @@ (defn token [type text literal line start] - {::type type - ::lexeme text - ::literal literal - ::line line - ::start start}) + {:type type + :lexeme text + :literal literal + :line line + :start start})