Sha256: c7998cf8085bba1d7fd2c6a73a02615c6206ea5c02a4b1b860d4171a6e4ae9e1

Contents?: true

Size: 900 Bytes

Versions: 7

Compression:

Stored size: 900 Bytes

Contents

require 'cucumber/ast/comment'
require 'cucumber/ast/tags'
require 'cucumber/ast/features'
require 'cucumber/ast/feature'
require 'cucumber/ast/scenario'
require 'cucumber/ast/scenario_outline'
require 'cucumber/ast/background'
require 'cucumber/ast/step'
require 'cucumber/ast/table'
require 'cucumber/ast/py_string'
require 'cucumber/ast/outline_table'
require 'cucumber/ast/examples'
require 'cucumber/ast/visitor'
require 'cucumber/ast/filter'

module Cucumber
  # Classes in this module represent the Abstract Syntax Tree (AST)
  # that gets built when feature files are parsed.
  #
  # AST classes don't expose any internal data directly. This is
  # in order to encourage a less coupled design in the classes
  # that operate on the AST. The only public method is #accept.
  #
  # The AST can be traversed with a visitor. See Cucumber::Format::Pretty
  # for an example.
  module Ast
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
aslakhellesoy-cucumber-0.1.99.12 lib/cucumber/ast.rb
aslakhellesoy-cucumber-0.1.99.13 lib/cucumber/ast.rb
aslakhellesoy-cucumber-0.1.99.14 lib/cucumber/ast.rb
aslakhellesoy-cucumber-0.1.99.15 lib/cucumber/ast.rb
aslakhellesoy-cucumber-0.1.99.17 lib/cucumber/ast.rb
aslakhellesoy-cucumber-0.1.99.18 lib/cucumber/ast.rb
aslakhellesoy-cucumber-0.1.99.19 lib/cucumber/ast.rb