Compare commits

..

No commits in common. "b8c4d0a6c628d5dcb906a72d9384a667a1750d96" and "2d007c977c43cc7255244f82f0a7918755ac3aee" have entirely different histories.

2 changed files with 13 additions and 21 deletions

3
.gitignore vendored
View file

@ -1,6 +1,3 @@
/target
.direnv
.devenv
out.png
.pre-commit-config.yaml
src

View file

@ -55,22 +55,25 @@ 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),
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) => {
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) => {
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
}
@ -109,11 +112,3 @@ 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())),
}
}