Class: Kotoshu::Languages::Russian::GrammarRules::CaseAgreementRule
- Defined in:
- lib/kotoshu/languages/ru/language.rb
Overview
Rule: Case agreement
Instance Attribute Summary
Attributes inherited from Rule
Instance Method Summary collapse
- #check(_tokens) ⇒ Object
-
#initialize ⇒ CaseAgreementRule
constructor
A new instance of CaseAgreementRule.
Constructor Details
#initialize ⇒ CaseAgreementRule
Returns a new instance of CaseAgreementRule.
298 299 300 |
# File 'lib/kotoshu/languages/ru/language.rb', line 298 def initialize super('RU_CASE_AGREEMENT', 'Case Agreement', 'Nouns, adjectives, and verbs must agree in case.') end |
Instance Method Details
#check(_tokens) ⇒ Object
302 303 304 305 |
# File 'lib/kotoshu/languages/ru/language.rb', line 302 def check(_tokens) # Simplified implementation [] end |