check verb agreement with 1 NP transitive phrases
This commit is contained in:
parent
f59e3c6550
commit
a3dbf550f0
|
@ -0,0 +1 @@
|
||||||
|
// TODO: ability to treat a doubled noun as an adverb
|
|
@ -949,6 +949,11 @@ const tests: {
|
||||||
})
|
})
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
input: "سړي مې واهه",
|
||||||
|
output: [],
|
||||||
|
error: true,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -298,12 +298,23 @@ export function parseVP(
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (np.inflected) {
|
} else {
|
||||||
errors.push({
|
if (np.inflected) {
|
||||||
message: !isPast
|
errors.push({
|
||||||
? "object of a past tense transitive verb should not be inflected"
|
message: !isPast
|
||||||
: "subject of a non-past tense transitive verb should not be inflected",
|
? "object of a past tense transitive verb should not be inflected"
|
||||||
});
|
: "subject of a non-past tense transitive verb should not be inflected",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (getPersonFromNP(king) !== verb.person) {
|
||||||
|
errors.push({
|
||||||
|
message: `${
|
||||||
|
isPast ? "past tense" : "non-past tense"
|
||||||
|
} transitive verb must agree agree with ${
|
||||||
|
isPast ? "obect" : "subject"
|
||||||
|
}`,
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
const blocksOps: T.VPSBlockComplete[][] = servants.map((servant) =>
|
const blocksOps: T.VPSBlockComplete[][] = servants.map((servant) =>
|
||||||
!isPast
|
!isPast
|
||||||
|
|
Loading…
Reference in New Issue