Skip to content

Commit

Permalink
chuck: Fix soft-fail for with-meta
Browse files Browse the repository at this point in the history
  • Loading branch information
wasamasa committed Aug 28, 2024
1 parent 5891315 commit 43ae30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impls/chuck/reader.ck
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class Reader

fun static string[] tokenizer(string input)
{
"^[ \n,]*(~@|[][{}()'`~^@]|\"(\\\\.|[^\\\"])*\"|;[^\n]*|[^][ \n{}()'`~@,;\"]*)" => string tokenRe;
"^[ \n,]*(~@|[][{}()'`~^@]|\"(\\\\.|[^\\\"])*\"|;[^\n]*|[^][ \n{}()^~@'`,;\"]*)" => string tokenRe;
"^([ \n,]*|;[^\n]*)$" => string blankRe;

string tokens[0];
Expand Down

0 comments on commit 43ae30f

Please sign in to comment.