Sha256: 4ae9d05060561520bba24b2f187ea24f73becc76ce9b3a398722c33aeadad152

Contents?: true

Size: 465 Bytes

Versions: 5

Compression:

Stored size: 465 Bytes

Contents

require 'lucid/ast/step_collection'

module Lucid
  module AST
    class EmptyBackground
      attr_writer :file
      attr_accessor :feature

      def failed?
        false
      end

      def feature_elements
        []
      end

      def step_collection(step_invocations)
        StepCollection.new(step_invocations)
      end

      def step_invocations
        []
      end

      def init
      end

      def accept(visitor)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lucid-0.0.9 lib/lucid/ast/empty_background.rb
lucid-0.0.8 lib/lucid/ast/empty_background.rb
lucid-0.0.7 lib/lucid/ast/empty_background.rb
lucid-0.0.6 lib/lucid/ast/empty_background.rb
lucid-0.0.5 lib/lucid/ast/empty_background.rb