Support for Archetype processing in IG publisher

This commit is contained in:
Grahame Grieve 2025-01-06 10:57:18 +11:00
parent 12cfe341fc
commit e282b9470f
2 changed files with 10 additions and 0 deletions

View File

@ -1676,4 +1676,13 @@ public class Element extends Base implements NamedItem {
return this.elided;
}
public void stripLocations() {
line = -1;
col = -1;
if (children != null) {
for (Element child : children) {
child.stripLocations();
}
}
}
}

View File

@ -136,6 +136,7 @@ public class UserDataNames {
public static final String pub_no_load_deps = "no-load-deps";
public static final String kindling_ballot_package = "ballot.package";
public static final String archetype = "archetype";
}