Antlr4.Tool.ErrorType.ErrorType C# (CSharp) Méthode

ErrorType() private méthode

private ErrorType ( string name, int code, string msg, ErrorSeverity severity )
name string
code int
msg string
severity ErrorSeverity
        private ErrorType(string name, int code, string msg, ErrorSeverity severity) {
            this.name = name;
            this.code = code;
            this.msg = msg;
            this.severity = severity;
        }
ErrorType