Compare commits
2 commits
2d007c977c
...
b8c4d0a6c6
Author | SHA1 | Date | |
---|---|---|---|
b8c4d0a6c6 | |||
27e9087d9f |
2 changed files with 21 additions and 13 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,6 @@
|
|||
/target
|
||||
.direnv
|
||||
.devenv
|
||||
out.png
|
||||
.pre-commit-config.yaml
|
||||
src
|
||||
|
|
31
src/parse.rs
31
src/parse.rs
|
@ -55,25 +55,22 @@ pub fn parse_the_shit_out_of_this_but_manually<'a>(
|
|||
Ok(Token::Text(s)) => r.push(LanguageStructureThingy::Text(s)),
|
||||
Ok(Token::Newline) => r.push(LanguageStructureThingy::Text("\n".to_owned())),
|
||||
Ok(Token::ParenOpen) => hehe_sexpression_funy(&mut r, &mut lex),
|
||||
Ok(Token::String(_)) => todo!(),
|
||||
Ok(Token::Equals) => todo!(),
|
||||
Ok(Token::Asterisk) => todo!(),
|
||||
Ok(Token::Underscore) => todo!(),
|
||||
Ok(Token::Backslash) => todo!(),
|
||||
Ok(Token::WavyThing) => todo!(),
|
||||
Ok(Token::Sparkles) => todo!(),
|
||||
Ok(Token::HeadingLevelIndicator) => todo!(),
|
||||
Err(()) | Ok(Token::ParenClose) => {
|
||||
Err(())
|
||||
| Ok(Token::ParenClose)
|
||||
| Ok(Token::String(_))
|
||||
| Ok(Token::Equals)
|
||||
| Ok(Token::Asterisk)
|
||||
| Ok(Token::Underscore)
|
||||
| Ok(Token::Backslash)
|
||||
| Ok(Token::WavyThing)
|
||||
| Ok(Token::Sparkles)
|
||||
| Ok(Token::HeadingLevelIndicator) => {
|
||||
reporter.report_diagnostic(*file_id, loc, DiagnosticKind::InvalidToken)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
reporter.fail_step_if_failed();
|
||||
// match lex.next() {
|
||||
// Some(Err(e)) => panic!("mauuu~ :(, e: {e:?}"),
|
||||
// None => break,
|
||||
// }
|
||||
|
||||
r
|
||||
}
|
||||
|
@ -112,3 +109,11 @@ fn hehe_sexpression_funy(r: &mut Vec<LanguageStructureThingy>, lex: &mut Lexer<'
|
|||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
fn mk_simple_sexpression(name: impl ToString, content: impl ToString) -> LanguageStructureThingy {
|
||||
LanguageStructureThingy::Sexpression {
|
||||
name: name.to_string(),
|
||||
attrs: HashMap::new(),
|
||||
content: Box::new(LanguageStructureThingy::Text(content.to_string())),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue