This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public class MutableCell | |
{ | |
private Object o; | |
public MutableCell(Object o) | |
{ | |
this.o = o; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Clojure/Clojure.Tests/clojure/test_clojure/errors.clj b/Clojure/Clojure.Tests/clojure/test_clojure/errors.clj | |
index 0ae6dfb1..8e1493de 100644 | |
--- a/Clojure/Clojure.Tests/clojure/test_clojure/errors.clj | |
+++ b/Clojure/Clojure.Tests/clojure/test_clojure/errors.clj | |
@@ -23,6 +23,8 @@ | |
(defmacro m1 [a] `(inc ~a)) | |
+(defmacro m2 [] (assoc)) | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.ArgumentException: No matching clause: :clojure.spec.alpha/pcat | |
at clojure$spec$alpha$deriv__42702.invokeStatic (System.Object , System.Object ) [0x00713] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure$spec$alpha$deriv__42702.invoke (System.Object , System.Object ) [0x00000] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure$spec$alpha$re_conform__42801.invokeStatic (System.Object , System.Object ) [0x00117] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure$spec$alpha$re_conform__42801.invoke (System.Object , System.Object ) [0x00000] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure.spec.alpha$regex_spec_impl$reify__42824__42828.conform_STAR_ (System.Object ) [0x00085] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure$spec$alpha$conform__41043.invokeStatic (System.Object , System.Object ) [0x0005c] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure$spec$alpha$conform__41043.invoke (System.Object , System.Object ) [0x00000] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojur |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clojure.lang.Compiler+AssemblyInitializationException: Error initializing arcadia.config.clj, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> clojure.lang.Compiler+CompilerException: System.ArgumentException: No matching clause: :clojure.spec.alpha/pcat | |
at clojure$spec$alpha$deriv__42702.invokeStatic (System.Object , System.Object ) [0x00713] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure$spec$alpha$deriv__42702.invoke (System.Object , System.Object ) [0x00000] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure$spec$alpha$re_conform__42801.invokeStatic (System.Object , System.Object ) [0x00117] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure$spec$alpha$re_conform__42801.invoke (System.Object , System.Object ) [0x00000] in <0d96563083994f7ab8cfc473b2ed5010>:0 | |
at clojure.spec.alpha$regex_spec_impl$reify__42824__4282 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
beta: | |
clojure.lang.ArityException: Wrong number of args (-2) passed to: PersistentHashSet | |
clojure.lang.Compiler.MacroexpandSeq1 (clojure.lang.ISeq) | |
clojure.lang.Compiler.AnalyzeSeq (clojure.lang.CljCompiler.Ast.ParserContext, clojure.lang.ISeq, System.String) | |
develop: | |
CompilerException clojure.lang.ArityException: Wrong number of args (-2) passed to: PersistentHashSet | |
at clojure.lang.Compiler.MacroexpandSeq1 (clojure.lang.ISeq form) [0x00062] in <e5c1049893bf4d6f8893a41079c4a366>:0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CompilerException clojure.lang.ArityException: Wrong number of args (0) passed to: PersistentHashSet | |
at clojure.lang.Compiler.MacroexpandSeq1 (clojure.lang.ISeq form) [0x000a3] in <3c2cdf27443446c5acce1653206bd81d>:0 | |
at clojure.lang.Compiler.AnalyzeSeq (clojure.lang.CljCompiler.Ast.ParserContext pcon, clojure.lang.ISeq form, System.String name) [0x000e0] in <3c2cdf27443446c5acce1653206bd81d>:0 , compiling: (NO_SOURCE_PATH:20:356) | |
clojure.lang.Compiler.AnalyzeSeq (:0) | |
clojure.lang.Compiler.Analyze (:0) | |
clojure.lang.Compiler.Analyze (:0) | |
clojure.lang.CljCompiler.Ast.InvokeExpr.Parse (:0) | |
clojure.lang.Compiler.AnalyzeSeq (:0) | |
clojure.lang.Compiler.Analyze (:0) | |
clojure.lang.Compiler.AnalyzeSeq (:0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Clojure/Clojure.Tests/clojure/test_clojure/errors.clj b/Clojure/Clojure.Tests/clojure/test_clojure/errors.clj | |
index 0ae6dfb1..8e1493de 100644 | |
--- a/Clojure/Clojure.Tests/clojure/test_clojure/errors.clj | |
+++ b/Clojure/Clojure.Tests/clojure/test_clojure/errors.clj | |
@@ -23,6 +23,8 @@ | |
(defmacro m1 [a] `(inc ~a)) | |
+(defmacro m2 [] (assoc)) | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.ArgumentException: No matching clause: :clojure.spec.alpha/pcat | |
* clojure/spec/alpha/deriv | |
* clojure/spec/alpha/re-conform | |
clojure.spec.alpha/regex-spec-impl/reify.conform_STAR_ (object) | |
* clojure/spec/alpha/conform | |
* clojure/spec/alpha/macroexpand-check | |
* clojure.lang.AFn | |
* clojure.lang.Var | |
clojure.lang.Compiler.CheckSpecs (clojure.lang.Var, clojure.lang.ISeq) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/arcadia-unity/clojure-clr.git | |
cd clojure-clr | |
git checkout unity | |
make | |
sh deploy.sh <project/Assets/Arcadia/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clojure.lang.Compiler+AssemblyInitializationException: Error initializing arcadia.internal.config.clj, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: The type initializer for '__expr11240' threw an exception. ---> clojure.lang.Compiler+AssemblyInitializationException: Error initializing arcadia.internal.asset_watcher.clj, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: The type initializer for '__expr11401' threw an exception. ---> clojure.lang.Compiler+AssemblyInitializationException: Error initializing arcadia.internal.filewatcher.clj, Version=0.0.0.0, Culture=neutral, PublicKeyToken=nu |