fez-lisp 1.0.51 → 1.0.53

Sign up to get free protection for your applications and to get access to all the features.
package/index.js CHANGED
@@ -1,8 +1,8 @@
1
- import { evaluate } from './src/interpreter.js'
1
+ import { evaluate } from './src/evaluator.js'
2
2
  import { LISP, AST } from './src/parser.js'
3
3
  import { fez, tree } from './src/utils.js'
4
4
  import std from './lib/baked/std.js'
5
- import { keywords } from './src/tokeniser.js'
6
- import { WORD, APPLY, ATOM, VALUE, TYPE } from './src/enums.js'
5
+ import { keywords } from './src/interpreter.js'
6
+ import { WORD, APPLY, ATOM, VALUE, TYPE } from './src/keywords.js'
7
7
  const types = { WORD, APPLY, ATOM, VALUE, TYPE }
8
8
  export { fez, keywords, evaluate, std, types, tree, LISP, AST }