blob: 5036aa11aec2951c892f6060c7f3089b79511786 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! Modifiable symbols.
mod emoji;
mod sym;
pub use emoji::*;
pub use sym::*;
use crate::prelude::*;
/// Hook up all symbol definitions.
pub(super) fn define(global: &mut Scope) {
global.define("sym", sym());
global.define("emoji", emoji());
}
|