Compare commits

...

2 commits

Author SHA1 Message Date
a518097ff0 Add single quote strings, quote escaping 2023-05-19 22:44:00 -07:00
8faf2eb636 Improve debugging 2023-05-19 22:15:14 -07:00
3 changed files with 30 additions and 8 deletions

View file

@ -4,6 +4,9 @@ what the heck
"this is a string with a # comment"
"this is a string over
multiple lines"
"this is \"escaped\""
'this is a single quote string'
'this also has escaped \'quotes\''
this is cool # comment
huh

View file

@ -19,11 +19,22 @@ pub fn parse(file_path: &str) {
for token in line.into_inner() {
match token.as_rule() {
Rule::token => {
println!("{}", token.as_str());
let token = token.into_inner().next().unwrap();
match token.as_rule() {
Rule::string => {
let string_data = token.into_inner().next().unwrap();
let str = string_data.as_str();
println!("string: {}", match string_data.as_rule() {
Rule::single_quote_string_data => str.replace("\\'", "'"),
Rule::double_quote_string_data => str.replace("\\\"", "\""),
_ => unreachable!(),
});
},
_ => {
println!("{}", token.as_str());
}
Rule::keyword => println!("keyword: {}", token.as_str()),
_ => unreachable!(),
};
},
_ => unreachable!(),
}
}
println!()

View file

@ -13,10 +13,18 @@ token = { string | keyword }
// has to be atomic for no implicit separate (spaces)
keyword = @{ (!(WHITESPACE | NEWLINE) ~ ANY)+ }
// strings cannot contain quotes
// TODO: escaped quotes
string_data = @{ (!"\"" ~ ANY)* }
string = ${ "\"" ~ string_data ~ "\"" }
single_quote_string_data = @{ (
"\\'" // Escaped single quotes
| (!"'" ~ ANY)
)* }
double_quote_string_data = @{ (
"\\\"" // Escaped double quotes
| (!"\"" ~ ANY)
)* }
string = ${
("'" ~ single_quote_string_data ~ "'")
| ("\"" ~ double_quote_string_data ~ "\"")
}
// comments are a # followed by
// any number of non-newline characters