summaryrefslogtreecommitdiffstats
path: root/crates/rebel-parse/src/ast.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2024-04-24 23:38:14 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2024-04-24 23:38:34 +0200
commite9107ac8101b1d8211737327216c0af1cbaa81ab (patch)
tree18645f71c7ff1f543f21702f35eac9c9388d4ee2 /crates/rebel-parse/src/ast.rs
parente2c6edc6dc88ab805b9d71ae8052298ae961d5ec (diff)
downloadrebel-e9107ac8101b1d8211737327216c0af1cbaa81ab.tar
rebel-e9107ac8101b1d8211737327216c0af1cbaa81ab.zip
rebel-parse: do not represent different string types in AST
Diffstat (limited to 'crates/rebel-parse/src/ast.rs')
-rw-r--r--crates/rebel-parse/src/ast.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/rebel-parse/src/ast.rs b/crates/rebel-parse/src/ast.rs
index 8f86acd..9eed70a 100644
--- a/crates/rebel-parse/src/ast.rs
+++ b/crates/rebel-parse/src/ast.rs
@@ -136,8 +136,6 @@ pub enum Literal<'a> {
Boolean(bool),
Integer(u64),
String(&'a str),
- RawString(&'a str),
- ScriptString(&'a str),
Tuple(Vec<Expr<'a>>),
Array(Vec<Expr<'a>>),
Map(Vec<MapEntry<'a>>),