parser tests added

This commit is contained in:
zadam
2020-05-20 23:20:39 +02:00
parent faf4daa577
commit b26100479d
7 changed files with 220 additions and 32 deletions

View File

@@ -11,9 +11,9 @@ class Attribute {
/** @param {string} */
this.type = row.type;
/** @param {string} */
this.name = row.name;
this.name = row.name.toLowerCase();
/** @param {string} */
this.value = row.value;
this.value = row.value.toLowerCase();
/** @param {boolean} */
this.isInheritable = !!row.isInheritable;