diff options
author | Cashew <52880648+Scrub1492@users.noreply.github.com> | 2023-12-23 00:59:12 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 15:59:12 +0000 |
commit | c18141a09b519a8ea650874aa09c06d7fa4fb98d (patch) | |
tree | b1c25b7e432dd3fc1f145d4f74622660a5bef7a2 /test/deinflector.test.js | |
parent | 2b29df7a8ecd95384dbee30e27743cf25703e447 (diff) |
Add 出来る/できる as inflections of する (#419)
* Deinflect できる to する
* Unit test できる→する deinflection
* Deinflect 出来る to する
---------
Co-authored-by: Tom Dong <tomtung@users.noreply.github.com>
Diffstat (limited to 'test/deinflector.test.js')
-rw-r--r-- | test/deinflector.test.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/deinflector.test.js b/test/deinflector.test.js index 1d7a39cf..7ef8e6dd 100644 --- a/test/deinflector.test.js +++ b/test/deinflector.test.js @@ -562,6 +562,8 @@ function testDeinflections() { {term: 'する', source: 'した', rule: 'vs', reasons: ['past']}, {term: 'する', source: 'しました', rule: 'vs', reasons: ['polite past']}, {term: 'する', source: 'して', rule: 'vs', reasons: ['-te']}, + {term: 'する', source: 'できる', rule: 'vs', reasons: ['potential']}, + {term: 'する', source: '出来る', rule: 'vs', reasons: ['potential']}, {term: 'する', source: 'せられる', rule: 'vs', reasons: ['potential or passive']}, {term: 'する', source: 'される', rule: 'vs', reasons: ['passive']}, {term: 'する', source: 'させる', rule: 'vs', reasons: ['causative']}, |