generated from ElnuDev/rust-project
Compare commits
No commits in common. "a518097ff0c2f600f7100036117b8959edfd2a15" and "24e33aa550d5dbc773b4aa0b52052a7799357ae6" have entirely different histories.
a518097ff0
...
24e33aa550
3 changed files with 8 additions and 30 deletions
|
@ -4,9 +4,6 @@ what the heck
|
||||||
"this is a string with a # comment"
|
"this is a string with a # comment"
|
||||||
"this is a string over
|
"this is a string over
|
||||||
multiple lines"
|
multiple lines"
|
||||||
"this is \"escaped\""
|
|
||||||
'this is a single quote string'
|
|
||||||
'this also has escaped \'quotes\''
|
|
||||||
this is cool # comment
|
this is cool # comment
|
||||||
|
|
||||||
huh
|
huh
|
19
src/lib.rs
19
src/lib.rs
|
@ -19,22 +19,11 @@ pub fn parse(file_path: &str) {
|
||||||
for token in line.into_inner() {
|
for token in line.into_inner() {
|
||||||
match token.as_rule() {
|
match token.as_rule() {
|
||||||
Rule::token => {
|
Rule::token => {
|
||||||
let token = token.into_inner().next().unwrap();
|
println!("{}", token.as_str());
|
||||||
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!(),
|
|
||||||
});
|
|
||||||
},
|
|
||||||
Rule::keyword => println!("keyword: {}", token.as_str()),
|
|
||||||
_ => unreachable!(),
|
|
||||||
};
|
|
||||||
},
|
},
|
||||||
_ => unreachable!(),
|
_ => {
|
||||||
|
println!("{}", token.as_str());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
println!()
|
println!()
|
||||||
|
|
16
src/rpy.pest
16
src/rpy.pest
|
@ -13,18 +13,10 @@ token = { string | keyword }
|
||||||
// has to be atomic for no implicit separate (spaces)
|
// has to be atomic for no implicit separate (spaces)
|
||||||
keyword = @{ (!(WHITESPACE | NEWLINE) ~ ANY)+ }
|
keyword = @{ (!(WHITESPACE | NEWLINE) ~ ANY)+ }
|
||||||
|
|
||||||
single_quote_string_data = @{ (
|
// strings cannot contain quotes
|
||||||
"\\'" // Escaped single quotes
|
// TODO: escaped quotes
|
||||||
| (!"'" ~ ANY)
|
string_data = @{ (!"\"" ~ ANY)* }
|
||||||
)* }
|
string = ${ "\"" ~ string_data ~ "\"" }
|
||||||
double_quote_string_data = @{ (
|
|
||||||
"\\\"" // Escaped double quotes
|
|
||||||
| (!"\"" ~ ANY)
|
|
||||||
)* }
|
|
||||||
string = ${
|
|
||||||
("'" ~ single_quote_string_data ~ "'")
|
|
||||||
| ("\"" ~ double_quote_string_data ~ "\"")
|
|
||||||
}
|
|
||||||
|
|
||||||
// comments are a # followed by
|
// comments are a # followed by
|
||||||
// any number of non-newline characters
|
// any number of non-newline characters
|
||||||
|
|
Loading…
Add table
Reference in a new issue