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; }
public Examples(Table table, IList<string> tags, string file, int line, int column) : base(tags, "Examples", file, line, column) { Table = table; }