|
@@ -86,8 +86,8 @@ export class TrivialParser implements Parser {
|
|
|
|
|
|
// We create 2 (conflicting) asDeletions:
|
|
|
// one that is to be used only in the AS model, unaware of any CORR-stuff, and one that is to be used in the CORR model.
|
|
|
- const asDeletion = new NodeDeletion(asCreation, [], []);
|
|
|
- const asDeletion1 = new NodeDeletion(asCreation, [], [corrDeletion]);
|
|
|
+ const asDeletion = new NodeDeletion(asCreation, [], []); // only part of AS
|
|
|
+ const asDeletion1 = new NodeDeletion(asCreation, [], [corrDeletion]); // only part of CORR (override)
|
|
|
|
|
|
// We already have the deletion in the CS model, so we only need to create another one to be used in the CORR model:
|
|
|
const csDeletion1 = new NodeDeletion(csCreation,
|