2019-08-02 19:15:07 +00:00
|
|
|
#![feature(generators)]
|
|
|
|
#![feature(proc_macro_hygiene)]
|
2019-07-03 20:31:15 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
mod prelude;
|
2019-06-27 04:56:48 +00:00
|
|
|
|
|
|
|
mod cli;
|
|
|
|
mod commands;
|
|
|
|
mod context;
|
2019-09-05 16:23:42 +00:00
|
|
|
mod data;
|
2019-06-27 04:56:48 +00:00
|
|
|
mod env;
|
|
|
|
mod errors;
|
|
|
|
mod evaluate;
|
|
|
|
mod format;
|
|
|
|
mod git;
|
2019-09-16 20:48:22 +00:00
|
|
|
mod histsearch;
|
2019-06-27 04:56:48 +00:00
|
|
|
mod parser;
|
2019-07-02 07:56:20 +00:00
|
|
|
mod plugin;
|
2019-06-27 04:56:48 +00:00
|
|
|
mod shell;
|
|
|
|
mod stream;
|
2019-07-23 22:22:11 +00:00
|
|
|
mod traits;
|
2019-07-24 04:10:48 +00:00
|
|
|
mod utils;
|
2019-06-27 04:56:48 +00:00
|
|
|
|
2019-07-20 02:27:10 +00:00
|
|
|
pub use crate::commands::command::{CallInfo, ReturnSuccess, ReturnValue};
|
2019-07-24 17:14:30 +00:00
|
|
|
pub use crate::context::{SourceMap, SpanSource};
|
2019-07-04 05:11:56 +00:00
|
|
|
pub use crate::env::host::BasicHost;
|
2019-09-14 16:30:24 +00:00
|
|
|
pub use crate::parser::hir::SyntaxShape;
|
2019-09-02 06:11:05 +00:00
|
|
|
pub use crate::parser::parse::token_tree_builder::TokenTreeBuilder;
|
2019-07-02 07:56:20 +00:00
|
|
|
pub use crate::plugin::{serve_plugin, Plugin};
|
2019-08-28 17:01:16 +00:00
|
|
|
pub use crate::utils::{AbsoluteFile, AbsolutePath, RelativePath};
|
2019-06-27 04:56:48 +00:00
|
|
|
pub use cli::cli;
|
2019-09-05 16:23:42 +00:00
|
|
|
pub use data::base::{Primitive, Value};
|
2019-09-11 14:36:50 +00:00
|
|
|
pub use data::config::{config_path, APP_INFO};
|
2019-09-05 16:23:42 +00:00
|
|
|
pub use data::dict::{Dictionary, TaggedDictBuilder};
|
2019-09-14 16:30:24 +00:00
|
|
|
pub use data::meta::{Tag, Tagged, TaggedItem};
|
2019-09-01 16:20:31 +00:00
|
|
|
pub use errors::{CoerceInto, ShellError};
|
2019-08-30 17:29:04 +00:00
|
|
|
pub use num_traits::cast::ToPrimitive;
|
2019-06-27 04:56:48 +00:00
|
|
|
pub use parser::parse::text::Text;
|
2019-08-02 19:15:07 +00:00
|
|
|
pub use parser::registry::{EvaluatedArgs, NamedType, PositionalType, Signature};
|