diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-07-09 00:50:58 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-07-09 00:50:58 +0200 |
commit | 1138ac8fc8764cf5cd987383a7a0332879be6cca (patch) | |
tree | 63aa25275e866d986c2b532f1f050c4f2cf99ac1 /test/deinflection | |
parent | d36cefb50ddf67daa08a221d2de4d3eaae9e2492 (diff) |
rename conditionals and deconjugate obligatory inflections
Diffstat (limited to 'test/deinflection')
-rw-r--r-- | test/deinflection/cases.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/deinflection/cases.ts b/test/deinflection/cases.ts index e0b2137..143e2a4 100644 --- a/test/deinflection/cases.ts +++ b/test/deinflection/cases.ts @@ -38,8 +38,10 @@ export default [ { input: "落ちられる", mustHave: [ Inflection.Potential ], mustNotHave: [], }, { input: "言われる", mustHave: [ Inflection.Passive ], mustNotHave: [], }, { input: "喋っている", mustHave: [ Inflection.Tense.Continuous ], mustNotHave: [ Inflection.Suffix.Te ], }, - { input: "泳げれば", mustHave: [ Inflection.Suffix.Ba ], mustNotHave: [], }, + { input: "泳げれば", mustHave: [ Inflection.Conditional.Ba ], mustNotHave: [], }, { input: "取らなければ", mustHave: [ Inflection.Potential, Inflection.Negative ], mustNotHave: [], }, + { input: "入ってはいけない", mustHave: [ Inflection.Obliged, Inflection.Negative ], mustNotHave: [ Inflection.Affirmative ], }, // obliged + negative = must not ~ + { input: "行かなくてはなりません", mustHave: [ Inflection.Obliged, Inflection.Affirmative ], mustNotHave: [ Inflection.Negative ], }, // obliged + affirmative = must ~ // TODO: りゃ for いることは // TODO: じゃ for では // TODO: なきゃ + なくちゃ |