File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ module.exports = {
7
7
endTagWithAttributes : 'end-tag-with-attributes' ,
8
8
selfClosingEndTag : 'self-closing-end-tag' ,
9
9
unexpectedNullCharacter : 'unexpected-null-character' ,
10
- unexpectedEofCharacter : 'unexpected-eof-character' ,
11
10
startOfProcessingInstructionOrXMLDeclaration : 'start-of-processing-instruction-or-xml-declaration' ,
12
11
unexpectedFirstCharacterOfStartTagName : 'unexpected-first-character-of-start-tag-name' ,
13
12
missingEndTagName : 'missing-end-tag-name' ,
13
+ eofInTagName : 'eof-in-tag-name' ,
14
14
eofBeforeEndTagName : 'eof-before-end-tag-name' ,
15
15
cdataInHtmlContent : 'cdata-in-html-content' ,
16
16
malformedComment : 'malformed-comment' ,
Original file line number Diff line number Diff line change @@ -754,7 +754,7 @@ _[TAG_NAME_STATE] = function tagNameState(cp) {
754
754
}
755
755
756
756
else if ( cp === $ . EOF ) {
757
- this . _err ( ERR . unexpectedEofCharacter ) ;
757
+ this . _err ( ERR . eofInTagName ) ;
758
758
this . _emitEOFToken ( ) ;
759
759
}
760
760
You can’t perform that action at this time.
0 commit comments