-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex-tests.js
More file actions
22 lines (22 loc) · 1.13 KB
/
index-tests.js
File metadata and controls
22 lines (22 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export {addition} from "./addition.js";
export {helloWorld} from "./hello-world.js";
export {inspector} from "./inspector.js";
export {mandelbrotSet} from "./mandelbrot-set.js";
export {syntaxError} from "./syntax-error.js";
export {runtimeError} from "./runtime-error.js";
export {syntaxError2} from "./syntax-error2.js";
export {syntaxError3} from "./syntax-error3.js";
export {syntaxError4} from "./syntax-error4.js";
export {nonCallEcho} from "./non-call-echo.js";
export {echoMultipleValues} from "./echo-multiple-values.js";
export {specialStatement} from "./special-statement.js";
export {echoInExpression} from "./echo-in-expression.js";
export {echoInFunction} from "./echo-in-function.js";
export {echoInClass} from "./echo-in-class.js";
export {echoFunctionReturnsFunction} from "./echo-function-returns-function.js";
export {echoFunctionAsArgument} from "./echo-function-as-argument.js";
export {echoInRecursiveFunction} from "./echo-in-recursive-function.js";
export {echoInBracket} from "./echo-in-bracket.js";
export {echoAsParams} from "./echo-as-params.js";
export {echoKey} from "./echo-key.js";
export {vCollision} from "./v-collision.js";