Skip to content

Commit

Permalink
Updated to Java commit 89245c6 (2012.07.20): Fix CLJ-788 add line mem…
Browse files Browse the repository at this point in the history
…ber to CompilerException
  • Loading branch information
dmiller committed Aug 19, 2012
1 parent 36db194 commit 0252769
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Clojure/Clojure/CljCompiler/Compiler.cs
Expand Up @@ -1586,6 +1586,7 @@ public sealed class CompilerException : Exception
#region Data

string FileSource { get; set; }
int Line { get; set; }

#endregion

Expand All @@ -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)
Expand Down

0 comments on commit 0252769

Please sign in to comment.