コード例 #1
0
 public DuplicateIdentifier(string name, PositionInText positions)
 {
     this.identifierPosition = positions;
         this.identifierName = name;
 }
コード例 #2
0
 public NonBooleanCondition(PositionInText position)
 {
     this.position = position;
 }
コード例 #3
0
 public UndefinedIdentifier(PositionInText position, string name)
 {
     this.position = position;
         this.name = name;
 }