Sha256: 86c14781e73d4a011a294eb11eb265ae1e5f35e18ac343b153591ac62c93d422

Contents?: true

Size: 955 Bytes

Versions: 6

Compression:

Stored size: 955 Bytes

Contents

require 'cucumber/ast/comment'
require 'cucumber/ast/features'
require 'cucumber/ast/feature'
require 'cucumber/ast/background'
require 'cucumber/ast/scenario'
require 'cucumber/ast/scenario_outline'
require 'cucumber/ast/step_invocation'
require 'cucumber/ast/step_collection'
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/tree_walker'

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

6 entries across 6 versions & 2 rubygems

Version Path
cucumber-0.6.4 lib/cucumber/ast.rb
cucumber-0.6.3 lib/cucumber/ast.rb
davidtrogers-cucumber-0.6.2 lib/cucumber/ast.rb
cucumber-0.6.2 lib/cucumber/ast.rb
cucumber-0.6.1 lib/cucumber/ast.rb
cucumber-0.6.0 lib/cucumber/ast.rb