Example #1
0
 public RegularExpression()
 {
     this.name      = "Новое регулярное выражение";
     this.regex     = string.Empty;
     this.iscorrect = false;
     this.level     = new DelphiAnalyser.Addition.Importance(10);
 }
Example #2
0
 public RegularExpression(string name, string regex, bool iscorrect, int level)
 {
     this.name      = name;
     this.regex     = regex;
     this.iscorrect = iscorrect;
     this.level     = new DelphiAnalyser.Addition.Importance(level);
 }
Example #3
0
 public ParsingError(string message, int level, FileInfo file, int position, Dictionary <string, string> metatags)
 {
     this.message  = message;
     this.level    = new Importance(level);
     this.file     = file;
     this.position = position;
     this.metatags = metatags;
 }