Esempio n. 1
0
 public DuplicateIdentifier(string name, PositionInText positions)
 {
     this.identifierPosition = positions;
         this.identifierName = name;
 }
Esempio n. 2
0
 public NonBooleanCondition(PositionInText position)
 {
     this.position = position;
 }
Esempio n. 3
0
 public UndefinedIdentifier(PositionInText position, string name)
 {
     this.position = position;
         this.name = name;
 }