rustfmt on error.rs, lib.rs

This commit is contained in:
Greg Shuflin 2021-10-14 16:54:05 -07:00
parent eeb4e743d2
commit ed6360247d
2 changed files with 9 additions and 8 deletions

View File

@ -1,6 +1,6 @@
use crate::parsing::ParseError;
use crate::schala::{SourceReference, Stage};
use crate::tokenizing::{Token, TokenKind, Location};
use crate::tokenizing::{Location, Token, TokenKind};
use crate::typechecking::TypeError;
pub struct SchalaError {

View File

@ -2,7 +2,7 @@
//#![feature(unrestricted_attribute_tokens)]
#![feature(box_patterns, box_syntax)]
//! `schala-lang` is where the Schala programming language is actually implemented.
//! `schala-lang` is where the Schala programming language is actually implemented.
//! It defines the `Schala` type, which contains the state for a Schala REPL, and implements
//! `ProgrammingLanguageInterface` and the chain of compiler passes for it.
@ -11,9 +11,10 @@ extern crate schala_repl;
extern crate schala_lang_codegen;
extern crate derivative;
macro_rules! bx {
($e:expr) => { Box::new($e) }
($e:expr) => {
Box::new($e)
};
}
#[macro_use]
@ -21,16 +22,16 @@ mod util;
#[macro_use]
mod typechecking;
mod tokenizing;
mod ast;
mod parsing;
mod tokenizing;
#[macro_use]
mod symbol_table;
mod scope_resolution;
mod builtin;
mod reduced_ast;
mod eval;
mod error;
mod eval;
mod reduced_ast;
mod scope_resolution;
mod schala;