Move src/syn/word.rs to src/scope.rs; add BuiltinFn

* crate::scope instead of crate::syn::word, which makes more sense
  because scopes are not really used in syntax at all
* Reference-counted BuiltinFn values are available for creation now

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-01-12 18:00:11 -08:00
parent 1c669decc4
commit 907c8ce1af
8 changed files with 25 additions and 11 deletions

View File

@@ -4,4 +4,3 @@ pub mod lexer;
pub mod parser;
pub mod span;
pub mod token;
pub mod words;