Esempio n. 1
0
 public Step(IList<Placeholder> placeholders, Table table, DocString docString, string name, string file, int line, int column)
     : base(name, file, line, column)
 {
     Placeholders = new ReadOnlyCollection<Placeholder> (placeholders);
     Table = table;
     DocString = docString;
 }
Esempio n. 2
0
 public Examples(Table table, IList<string> tags, string file, int line, int column)
     : base(tags, "Examples", file, line, column)
 {
     Table = table;
 }