Wrap floats in token trees in FLOAT_LITERAL node

This commit is contained in:
Jonas Schievink 2022-05-04 19:25:32 +02:00
parent 90bd99f1bb
commit 34dc8e9383
6 changed files with 33 additions and 22 deletions

View file

@ -3,7 +3,7 @@ mod atom;
use super::*;
pub(crate) use self::atom::{block_expr, match_arm_list};
pub(super) use self::atom::{literal, LITERAL_FIRST};
pub(super) use self::atom::{float_literal, literal, LITERAL_FIRST};
#[derive(PartialEq, Eq)]
pub(super) enum Semicolon {