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.
288 289 290 |
# File 'lib/kotoshu/languages/ru/language.rb', line 288 def initialize super('RU_CASE_AGREEMENT', 'Case Agreement', 'Nouns, adjectives, and verbs must agree in case.') end |
Instance Method Details
#check(tokens) ⇒ Object
292 293 294 295 |
# File 'lib/kotoshu/languages/ru/language.rb', line 292 def check(tokens) # Simplified implementation [] end |