Rename schala-lib -> schala-repl

This commit is contained in:
greg 2018-03-20 21:17:46 -07:00
parent 9d4082463a
commit 795b4adc6b
13 changed files with 10 additions and 10 deletions

View File

@ -12,7 +12,7 @@ lazy_static = "0.2.8"
maplit = "*"
colored = "1.5"
schala-lib = { path = "schala-lib" }
schala-repl = { path = "schala-repl" }
[build-dependencies]
includedir_codegen = "0.2.0"

View File

@ -1,5 +1,5 @@
[package]
name = "schala-lib"
name = "schala-repl"
version = "0.1.0"
authors = ["greg <greg.shuflin@protonmail.com>"]

View File

@ -6,9 +6,9 @@ use self::llvm_sys::prelude::*;
use self::llvm_sys::{LLVMIntPredicate};
use maaru_lang::parser::{AST, Statement, Function, Prototype, Expression, BinOp};
use schala_lib::LLVMCodeString;
use schala_repl::LLVMCodeString;
use schala_lib::llvm_wrap as LLVMWrap;
use schala_repl::llvm_wrap as LLVMWrap;
type VariableMap = HashMap<String, LLVMValueRef>;

View File

@ -3,7 +3,7 @@ pub mod parser;
pub mod eval;
pub mod compilation;
use schala_lib::{ProgrammingLanguageInterface, EvalOptions, LanguageOutput, TraceArtifact};
use schala_repl::{ProgrammingLanguageInterface, EvalOptions, LanguageOutput, TraceArtifact};
#[derive(Debug)]
pub struct TokenError {

View File

@ -11,8 +11,8 @@ mod maaru_lang;
mod robo_lang;
mod rukka_lang;
extern crate schala_lib;
use schala_lib::{PLIGenerator, schala_main};
extern crate schala_repl;
use schala_repl::{PLIGenerator, schala_main};
extern { }

View File

@ -1,5 +1,5 @@
use itertools::Itertools;
use schala_lib::{ProgrammingLanguageInterface, EvalOptions, LanguageOutput};
use schala_repl::{ProgrammingLanguageInterface, EvalOptions, LanguageOutput};
pub struct Robo {
}

View File

@ -1,5 +1,5 @@
use itertools::Itertools;
use schala_lib::{ProgrammingLanguageInterface, EvalOptions, LanguageOutput};
use schala_repl::{ProgrammingLanguageInterface, EvalOptions, LanguageOutput};
use std::iter::Peekable;
use std::vec::IntoIter;
use std::str::Chars;

View File

@ -1,5 +1,5 @@
use itertools::Itertools;
use schala_lib::{ProgrammingLanguageInterface, EvalOptions, TraceArtifact, UnfinishedComputation, FinishedComputation};
use schala_repl::{ProgrammingLanguageInterface, EvalOptions, TraceArtifact, UnfinishedComputation, FinishedComputation};
macro_rules! bx {
($e:expr) => { Box::new($e) }