Sha256: c95aa2afd919ca75b74b6d7728c3a653b105e219ab4bddf82c31409726f65132

Contents?: true

Size: 474 Bytes

Versions: 9

Compression:

Stored size: 474 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 create_step_invocations(step_invocations)
        StepInvocations.new(step_invocations)
      end

      def step_invocations
        []
      end

      def init
      end

      def accept(visitor)
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
lucid-0.5.1 lib/lucid/ast/empty_background.rb
lucid-0.4.1 lib/lucid/ast/empty_background.rb
lucid-0.4.0 lib/lucid/ast/empty_background.rb
lucid-0.3.3 lib/lucid/ast/empty_background.rb
lucid-0.3.0 lib/lucid/ast/empty_background.rb
lucid-0.2.1 lib/lucid/ast/empty_background.rb
lucid-0.2.0 lib/lucid/ast/empty_background.rb
lucid-0.1.1 lib/lucid/ast/empty_background.rb
lucid-0.1.0 lib/lucid/ast/empty_background.rb