class Cucumber::Ast::ScenarioOutline
def to_sexp
def to_sexp sexp = [:scenario_outline, @keyword, @name] comment = @comment.to_sexp sexp += [comment] if comment tags = @tags.to_sexp sexp += tags if tags.any? steps = @steps.to_sexp sexp += steps if steps.any? sexp += @examples_array.map{|e| e.to_sexp} sexp end