コード例 #1
0
ファイル: StateMachine.cs プロジェクト: thomas13335/smg
 public void SetLocation(CodeLocation location)
 {
     _current = location;
 }
コード例 #2
0
 public SyntaxErrorException(CodeLocation location, string message)
     : base(ErrorCode.SyntaxError, message)
 {
     Location = location;
 }