Antlr4.Tool.ErrorManager.InternalError C# (CSharp) Method

InternalError() public static method

public static InternalError ( string error ) : void
error string
return void
        public static void InternalError(string error)
        {
            string location =
                GetLastNonErrorManagerCodeLocation(new Exception());
            string msg = location + ": " + error;
            Console.Error.WriteLine("internal error: " + msg);
        }

Same methods

ErrorManager::InternalError ( string error, System.Exception e ) : void