diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-09 19:10:49 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-09 23:02:47 +0200 |
commit | 1d8e6239875c810197a0679a20412726afb8ff66 (patch) | |
tree | 3daa917d720235117770040405a78dad548032e9 /src/machine.rs | |
parent | 77eb3eefeeab3ba7ab3c6387e5916192b95b482d (diff) |
refactor: merge token types with attr to new token module
Diffstat (limited to 'src/machine.rs')
-rw-r--r-- | src/machine.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine.rs b/src/machine.rs index d175b8b..6d4dc10 100644 --- a/src/machine.rs +++ b/src/machine.rs @@ -1,6 +1,6 @@ -use crate::attr::AttrValueSyntax; use crate::entities::try_read_character_reference; use crate::offset::{Offset, Position}; +use crate::token::AttrValueSyntax; use crate::tokenizer::CdataAction; use crate::utils::{ ascii_digit_pat, control_pat, ctostr, noncharacter_pat, surrogate_pat, whitespace_pat, State, |