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.
302 303 304 |
# File 'lib/kotoshu/languages/ru/language.rb', line 302 def initialize super('RU_CASE_AGREEMENT', 'Case Agreement', 'Nouns, adjectives, and verbs must agree in case.') end |
Instance Method Details
#check(_tokens) ⇒ Object
306 307 308 309 |
# File 'lib/kotoshu/languages/ru/language.rb', line 306 def check(_tokens) # Simplified implementation [] end |