From 0252769c7144accc95bbc93b1a4f49e653ec00c1 Mon Sep 17 00:00:00 2001 From: David Miller Date: Sun, 19 Aug 2012 13:07:10 -0500 Subject: [PATCH] Updated to Java commit 89245c6 (2012.07.20): Fix CLJ-788 add line member to CompilerException --- Clojure/Clojure/CljCompiler/Compiler.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Clojure/Clojure/CljCompiler/Compiler.cs b/Clojure/Clojure/CljCompiler/Compiler.cs index e2b5e0b77..dd7e68420 100644 --- a/Clojure/Clojure/CljCompiler/Compiler.cs +++ b/Clojure/Clojure/CljCompiler/Compiler.cs @@ -1586,6 +1586,7 @@ public sealed class CompilerException : Exception #region Data string FileSource { get; set; } + int Line { get; set; } #endregion @@ -1612,6 +1613,7 @@ public CompilerException(string source, int line, Exception cause) : base(ErrorMsg(source, line, cause.ToString()), cause) { FileSource = source; + Line = line; } private CompilerException(SerializationInfo info, StreamingContext context)