summaryrefslogtreecommitdiff
path: root/src/parse/resolve.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/resolve.rs')
-rw-r--r--src/parse/resolve.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parse/resolve.rs b/src/parse/resolve.rs
index bce2da3c..d68282c0 100644
--- a/src/parse/resolve.rs
+++ b/src/parse/resolve.rs
@@ -26,14 +26,12 @@ pub fn resolve_string(string: &str) -> EcoString {
// TODO: Error if closing brace is missing.
let sequence = s.eat_while(char::is_ascii_hexdigit);
let _terminated = s.eat_if('}');
-
match resolve_hex(sequence) {
Some(c) => out.push(c),
None => out.push_str(s.from(start)),
}
}
- // TODO: Error for invalid escape sequence.
_ => out.push_str(s.from(start)),
}
}