New plans for macros
About to move them completely to stdlib
This commit is contained in:
@@ -1,11 +1,35 @@
|
||||
pub mod atom;
|
||||
pub mod error;
|
||||
pub mod expr;
|
||||
pub mod interner;
|
||||
pub mod location;
|
||||
pub mod parser;
|
||||
pub mod proto;
|
||||
pub mod system;
|
||||
pub mod tree;
|
||||
pub mod vfs;
|
||||
pub mod logging;
|
||||
mod atom;
|
||||
pub use atom::{
|
||||
Atom, AtomData, AtomDrop, AtomId, AtomPrint, AtomReq, AtomSame, CallRef, Command, FinalCall, Fwd,
|
||||
Fwded, LocalAtom, NextStep, DeserAtom, SerializeAtom
|
||||
};
|
||||
mod error;
|
||||
pub use error::{ErrId, ErrLocation, OrcError, OrcResult};
|
||||
mod expr;
|
||||
pub use expr::{
|
||||
Acquire, Clause, Details, Expr, ExprNotif, ExprReq, ExprTicket, Inspect, Move, Release,
|
||||
};
|
||||
mod interner;
|
||||
pub use interner::{
|
||||
ExternStr, ExternStrv, IntReq, InternStr, InternStrv, Retained, Sweep, TStr, TStrv,
|
||||
};
|
||||
mod location;
|
||||
pub use location::{CodeGenInfo, Location, SourceRange};
|
||||
mod logging;
|
||||
pub use logging::{Log, LogStrategy};
|
||||
mod parser;
|
||||
pub use parser::{CharFilter, LexExpr, LexedExpr, ParsId, ParseLine, ParserReq, SubLex, SubLexed};
|
||||
mod proto;
|
||||
pub use proto::{
|
||||
ExtHostChannel, ExtHostNotif, ExtHostReq, ExtMsgSet, ExtensionHeader, HostExtChannel,
|
||||
HostExtNotif, HostExtReq, HostHeader, HostMsgSet, Ping,
|
||||
};
|
||||
mod system;
|
||||
pub use system::{SysReq, NewSystem, SysDeclId, SysId, SystemDecl, SystemDrop, SystemInst};
|
||||
mod tree;
|
||||
pub use tree::{
|
||||
CompName, GetMember, Item, ItemKind, Macro, Member, MemberKind, Module, Paren, Placeholder,
|
||||
PlaceholderKind, Token, TokenTree, TreeId, TreeTicket,
|
||||
};
|
||||
mod vfs;
|
||||
pub use vfs::{EagerVfs, GetVfs, Loaded, VfsId, VfsRead, VfsReq};
|
||||
|
||||
Reference in New Issue
Block a user