Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CompilerError.cs
Go to the documentation of this file.
1namespace System.Xml.Xsl.Xslt;
2
3internal sealed class CompilerError
4{
5 public int Line { get; set; }
6
7 public int Column { get; set; }
8
9 public string ErrorNumber { get; set; }
10
11 public string ErrorText { get; set; }
12
13 public bool IsWarning { get; set; }
14
15 public string FileName { get; set; }
16
17 public CompilerError(string fileName, int line, int column, string errorNumber, string errorText)
18 {
19 Line = line;
20 Column = column;
24 }
25}
CompilerError(string fileName, int line, int column, string errorNumber, string errorText)