We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d7cfd commit ed7ad4dCopy full SHA for ed7ad4d
src/parser/filter.ts
@@ -323,15 +323,6 @@ export const SENTENCE_RULES: ReadonlyArray<(sentence: Sentence) => boolean> = [
323
}
324
return true;
325
},
326
- // if there is "la", there can't be starting particle e.g. taso
327
- (sentence) =>
328
- sentence.type !== "simple" || sentence.contextClauses.length === 0 ||
329
- sentence.startingParticle == null || throwError(
330
- new UnrecognizedError(
331
- `${sentence.startingParticle.word} particle with "la"`,
332
- ),
333
334
-
335
// there can't be more than 1 "x ala x" or "seme"
336
(sentence) => {
337
if (sentence.interrogative != null) {
0 commit comments