Axiom.Compiler.Framework.PrologScanner.Error C# (CSharp) 메소드

Error() 개인적인 메소드

private Error ( string msg ) : void
msg string
리턴 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);
        }