diff options
author | nea <nea@nea.moe> | 2023-08-21 16:15:59 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-21 16:15:59 +0200 |
commit | 4bbfede4060d38083aafd8a6c7ab2847e0e55ebf (patch) | |
tree | f0ab50180d2fa1c872ba8c20a4b055cd87bed3c9 /src/LispExecutionContext.kt | |
parent | de694f30b5e2f6fd62a00e5a622abe0a2411afb9 (diff) | |
download | nealisp-4bbfede4060d38083aafd8a6c7ab2847e0e55ebf.tar.gz nealisp-4bbfede4060d38083aafd8a6c7ab2847e0e55ebf.tar.bz2 nealisp-4bbfede4060d38083aafd8a6c7ab2847e0e55ebf.zip |
method binding
Diffstat (limited to 'src/LispExecutionContext.kt')
-rw-r--r-- | src/LispExecutionContext.kt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/LispExecutionContext.kt b/src/LispExecutionContext.kt index 6398cc4..306e111 100644 --- a/src/LispExecutionContext.kt +++ b/src/LispExecutionContext.kt @@ -2,7 +2,6 @@ package moe.nea.lisp class LispExecutionContext() { - private val errorReporter = LispErrorReporter() val rootStackFrame = StackFrame(null) val unloadedModules = mutableMapOf<String, LispAst.Program>() val modules = mutableMapOf<String, Map<String, LispData>>() |