Axiom.Compiler.Framework.PrologScanner.Error C# (CSharp) Method

Error() private method

private Error ( string msg ) : void
msg string
return void
        private void Error(string msg)
        {
            // leave this here for scanner testing
            if (_output != null) _output.WriteLine("-- line {0}, col {1}: {2}", _line, _col, msg);
        }