We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f279dc6 commit bd2f3deCopy full SHA for bd2f3de
src/parser/filter.ts
@@ -352,6 +352,7 @@ export const SENTENCE_RULES: ReadonlyArray<(sentence: Sentence) => boolean> = [
352
sentence.contextClauses.slice(1).every(({ type }) => type !== "anu") ||
353
throwError(new UnrecognizedError('"anu la" inside a sentence')),
354
355
+ // TODO: also include "kin" and "anu" as content word
356
// there cannot be both "anu" as sentence starting particle and "anu la"
357
(sentence) =>
358
sentence.type !== "simple" || sentence.startingParticle == null ||
0 commit comments