diff options
author | Eduardo Julian | 2014-12-07 19:55:45 -0400 |
---|---|---|
committer | Eduardo Julian | 2014-12-07 19:55:45 -0400 |
commit | 0dbcec8e727511d71101a705972eb252eec79b9f (patch) | |
tree | ae2ea455e7bbe433ec83c90d1f9f9e4742175210 /src/lang/compiler.clj | |
parent | 98b427b8835eca42c0ee401a4deb842a9445a737 (diff) |
Fixed bug that was causing function-calls to fail.
Diffstat (limited to 'src/lang/compiler.clj')
-rw-r--r-- | src/lang/compiler.clj | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lang/compiler.clj b/src/lang/compiler.clj index 1c3f634cc..66e50a462 100644 --- a/src/lang/compiler.clj +++ b/src/lang/compiler.clj @@ -54,7 +54,9 @@ (defcompiler ^:private compile-ident [::&parser/ident ?name] (doto *writer* - (.visitVarInsn Opcodes/ALOAD (int 0)))) + (.visitVarInsn Opcodes/ALOAD (int 0))) + ;; nil + ) (defcompiler ^:private compile-fn-call [::&parser/fn-call [::&parser/ident ?fn] ?args] @@ -77,7 +79,7 @@ (compile-form *writer* arg)) ?method))] (doto *writer* - (.visitMethodInsn Opcodes/INVOKEVIRTUAL (->class "java.io.PrintStream") method "(Ljava/lang/String;)V")))) + (.visitMethodInsn Opcodes/INVOKEVIRTUAL (->class "java.io.PrintStream") method "(Ljava/lang/Object;)V")))) (defcompiler ^:private compile-ann-class [::&parser/ann-class ?class ?members] |