예제 #1
0
파일: Parser.cs 프로젝트: borota/JTVS
 private ErrorExpression Error(string verbatimImage = null, Expression preceeding = null)
 {
     var res = new ErrorExpression(verbatimImage, preceeding);
     res.SetLoc(GetStart(), GetEnd());
     return res;
 }