renamed "unicodePropertyEscapeValue" to "unicode_property_escapevalue"

This commit is contained in:
Erik Krogh Kristensen
2020-09-04 11:52:13 +02:00
parent 3ed310fb7b
commit a57f93b41e
7 changed files with 12 additions and 5 deletions

View File

@@ -287,7 +287,7 @@ public class RegExpExtractor {
public void visit(UnicodePropertyEscape nd) {
Label lbl = extractTerm(nd, parent, idx);
trapwriter.addTuple("unicode_property_escapename", lbl, nd.getName());
if (nd.hasValue()) trapwriter.addTuple("unicodePropertyEscapeValue", lbl, nd.getValue());
if (nd.hasValue()) trapwriter.addTuple("unicode_property_escapevalue", lbl, nd.getValue());
}
@Override