fez-lisp 1.0.50 → 1.0.52
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +3 -3
- package/lib/baked/std.js +1 -1
- package/package.json +1 -1
- package/src/compiler.js +1 -1
- package/src/evaluator.js +43 -0
- package/src/interpreter.js +1129 -34
- package/src/parser.js +1 -1
- package/src/utils.js +2 -2
- package/src/tokeniser.js +0 -1145
- /package/src/{enums.js → keywords.js} +0 -0
package/index.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
import { evaluate } from './src/
|
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/
|
6
|
-
import { WORD, APPLY, ATOM, VALUE, TYPE } from './src/
|
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 }
|