Errors.SemErr C# (CSharp) Method

SemErr() public method

public SemErr ( int line, int col, string s ) : void
line int
col int
s string
return void
    public void SemErr(int line, int col, string s)
    {
        errorStream.WriteLine(errMsgFormat, line, col, s);
        count++;
    }

Same methods

Errors::SemErr ( string s ) : void

Usage Example

Esempio n. 1
0
 public void SemErr(string msg)
 {
     if (errDist >= minErrDist)
     {
         errors.SemErr(t.line, t.col, msg);
     }
     errDist = 0;
 }
All Usage Examples Of Errors::SemErr