@@ -279,7 +279,7 @@ export class SchemaEntryWithAttributes extends SchemaEntry {
279279 * @param attributeName - The attribute to check for.
280280 * @returns Whether this schema entry has this attribute.
281281 */
282- public hasBooleanAttribute ( attributeName : string ) : boolean {
282+ public override hasBooleanAttribute ( attributeName : string ) : boolean {
283283 return this . booleanAttributeNames . has ( attributeName )
284284 }
285285
@@ -724,7 +724,7 @@ export class SchemaValueTag extends SchemaTag {
724724 /**
725725 * This tag's long name.
726726 */
727- public get longName ( ) : string {
727+ public override get longName ( ) : string {
728728 const nameParts = this . ancestors . map ( ( parentTag ) => parentTag . name )
729729 nameParts . reverse ( )
730730 nameParts . push ( '#' )
@@ -737,7 +737,7 @@ export class SchemaValueTag extends SchemaTag {
737737 * @param extension - The extension.
738738 * @returns The extended short string.
739739 */
740- public extend ( extension : string ) : string {
740+ public override extend ( extension : string ) : string {
741741 return this . parent . extend ( extension )
742742 }
743743
@@ -747,7 +747,7 @@ export class SchemaValueTag extends SchemaTag {
747747 * @param extension - The extension.
748748 * @returns The extended long string.
749749 */
750- public longExtend ( extension : string ) : string {
750+ public override longExtend ( extension : string ) : string {
751751 return this . parent . longExtend ( extension )
752752 }
753753}
0 commit comments