From cdfd89cd75cd92de61dc23ae0c01d05eae0bdfab Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Tue, 21 Apr 2020 02:17:11 -0400 Subject: [PATCH] add TODO to interpolated_ident_body --- src/utils/strings.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/strings.rs b/src/utils/strings.rs index af6433b..9737551 100644 --- a/src/utils/strings.rs +++ b/src/utils/strings.rs @@ -67,8 +67,10 @@ fn interpolated_ident_body>( buf.push_str(&escape(toks, false)?); } else if tok.kind == '#' { toks.next(); + // TODO: peekmore let next = toks.next().unwrap(); if next.kind == '{' { + // TODO: if ident, interpolate literally let interpolation = parse_interpolation(toks, scope, super_selector)?; buf.push_str(&interpolation.node.to_css_string(interpolation.span)?); }