Sha256: 381f56219961ad16809122d858601596d14c1c8286bbc3aaf1c5e1d6edfad603

Contents?: true

Size: 850 Bytes

Versions: 26

Compression:

Stored size: 850 Bytes

Contents

Foobara.require_project_file("type_declarations", "handlers/extend_attributes_type_declaration/hash_desugarizer")

module Foobara
  module TypeDeclarations
    module Handlers
      class ExtendAttributesTypeDeclaration < ExtendAssociativeArrayTypeDeclaration
        class DslDesugarizer < TypeDeclarations::Desugarizer
          def applicable?(sugary_type_declaration)
            sugary_type_declaration.is_a?(::Proc)
          end

          def desugarize(block)
            Foobara::TypeDeclarations::Dsl::Attributes.to_declaration(&block)
          end

          def priority
            # TODO: need a way to express that we must run after/before other processors so that we could just say
            # we are higher priority than the HashDesugarizer...
            Priority::HIGH - 1
          end
        end
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
foobara-0.0.26 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.25 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.24 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.23 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.22 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.21 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.20 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.19 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.18 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.17 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.16 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.15 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.14 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.13 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.12 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.11 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.10 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.9 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.8 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb
foobara-0.0.7 projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb