Sha256: 8899d2437c89311d0d81b3f57d844a9945d8b7d2b71a06a4cbfcdfdb530a23c0

Contents?: true

Size: 1.87 KB

Versions: 2

Compression:

Stored size: 1.87 KB

Contents

require_relative 'irregular_verb'

module Zenlish
  module WClasses
    # The `be` verb used as a lexical verb (as opposed auxiliary verb).
    class IrregularVerbBe < IrregularVerb
      def initialize
        super()
      end

      # The mix-in module used to extend the lexeme
      # @return [Module, NilClass]
      def extension
        nil
      end

      private

      def init_feature_defs
        super
        # Create standard feature definitions for irregular verbs.
        feature_def_dsl {
          feature_def 'PARADIGM' => [identifier, 'Verb_be_inflection'] # 2nd item is default value
        }
      end

      def init_paradigms
        builder = Inflect::InflectionTableBuilder.new
        table = builder.build('Verb_be_inflection') do
          feature_heading 'PERSON'
          feature_heading 'NUMBER'
          feature_heading 'TIME'
          #     PERSON               NUMBER             TIME
          rule([equals(:first),      equals(:singular), equals(:present)        ], literal('am'))
          rule([equals(:second),     equals(:singular), equals(:present)        ], literal('are'))
          rule([equals(:third),      equals(:singular), equals(:present)        ], literal('is'))
          rule([dont_care,           equals(:plural),   equals(:present)        ], literal('are'))
          rule([dont_care,           dont_care,         equals(:progressive)    ], literal('being'))
          rule([in?(:first, :third), equals(:singular), equals(:past_simple)    ], literal('was'))
          rule([equals(:second),     equals(:singular), equals(:past_simple)    ], literal('were'))
          rule([dont_care,           equals(:plural),   equals(:past_simple)    ], literal('were'))
          rule([dont_care,           dont_care,         equals(:past_participle)], literal('been'))
        end
        add_paradigm(table)
      end
    end # class
  end # module
end # module

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zenlish-0.2.05 lib/zenlish/wclasses/irregular_verb_be.rb
zenlish-0.2.04 lib/zenlish/wclasses/irregular_verb_be.rb