Microsoft.R.Core.Parser.ParseError.ParseError C# (CSharp) Method

ParseError() public method

public ParseError ( ParseErrorType errorType, ErrorLocation location, ITextRange range ) : System.Diagnostics
errorType ParseErrorType
location ErrorLocation
range ITextRange
return System.Diagnostics
        public ParseError(ParseErrorType errorType, ErrorLocation location, ITextRange range) :
            base(range) {
            this.ErrorType = errorType;
            this.Location = location;
        }
    }
ParseError