class Cucumber::Core::Ast::ScenarioOutline
def children
def children @steps + @examples_tables end
def description_for_visitors
def description_for_visitors :scenario_outline end
def initialize(gherkin_statement, language, location, background, comments, tags, feature_tags, keyword, title, description, steps, examples_tables)
def initialize(gherkin_statement, language, location, background, comments, tags, feature_tags, keyword, title, description, steps, examples_tables) @gherkin_statement = gherkin_statement @language = language @location = location @background = background @comments = comments @tags = tags @feature_tags = feature_tags @keyword = keyword @title = title @description = description @steps = steps @examples_tables = examples_tables end