Open
Description
Currently, the lexer will reject tokens like 1.0etest
expecting an exponent after the e
. It could alternatively accept this token as LitFloat { value: 1.0, suffix: "etest" }
. This would mean that proc macros could use suffixes that start with an e
(although not the suffix e
itself of course).