コード例 #1
0
ファイル: Parser.cs プロジェクト: massreuy/3P
 public ParserError(ParserErrorType type, Token triggerToken, int stackCount, List <ParsedIncludeFile> includeFiles)
 {
     Type            = type;
     TriggerLine     = triggerToken.Line;
     TriggerPosition = triggerToken.StartPosition;
     StackCount      = stackCount;
     FullFilePath    = includeFiles[triggerToken.OwnerNumber].FullFilePath;
 }
コード例 #2
0
ファイル: Parser.cs プロジェクト: jcaillon/3P
 public ParserError(ParserErrorType type, Token triggerToken, int stackCount)
 {
     Type = type;
     TriggerLine = triggerToken.Line;
     TriggerPosition = triggerToken.StartPosition;
     StackCount = stackCount;
 }
コード例 #3
0
ファイル: ParserError.cs プロジェクト: senahot/SQLab
 public ParserError(int elementIndex, ParserErrorType type)
 {
     ElementIndex = elementIndex;
     this.Type    = type;
 }