just 0.5.7

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
use crate::common::*;

pub(crate) fn compile(text: &str) {
  if let Err(error) = Parser::parse(text) {
    if let CompilationErrorKind::Internal { .. } = error.kind {
      panic!("{}", error)
    }
  }
}