vue3-core/packages/compiler-core/src/tokenizer.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

1177 lines
35 KiB
TypeScript
Raw Normal View History

2023-11-13 21:03:39 +08:00
/**
* This Tokenizer is adapted from htmlparser2 under the MIT License listed at
* https://github.com/fb55/htmlparser2/blob/master/LICENSE
Copyright 2010, 2011, Chris Winberry <chris@winberry.net>. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
*/
2023-11-24 21:53:35 +08:00
import { ErrorCodes } from './errors'
import type { ElementNode, Position } from './ast'
2023-11-18 21:39:31 +08:00
/**
* Note: entities is a non-browser-build-only dependency.
* In the browser, we use an HTML element to do the decoding.
* Make sure all imports from entities are only used in non-browser branches
* so that it can be properly treeshaken.
*/
2023-11-12 16:58:24 +08:00
import {
DecodingMode,
EntityDecoder,
2023-11-19 10:39:11 +08:00
fromCodePoint,
2023-11-18 21:39:31 +08:00
htmlDecodeTree,
2023-11-12 16:58:24 +08:00
} from 'entities/lib/decode.js'
export enum ParseMode {
2023-11-16 17:04:07 +08:00
BASE,
HTML,
SFC,
}
export enum CharCodes {
2023-11-12 16:58:24 +08:00
Tab = 0x9, // "\t"
NewLine = 0xa, // "\n"
FormFeed = 0xc, // "\f"
CarriageReturn = 0xd, // "\r"
Space = 0x20, // " "
ExclamationMark = 0x21, // "!"
Number = 0x23, // "#"
Amp = 0x26, // "&"
SingleQuote = 0x27, // "'"
DoubleQuote = 0x22, // '"'
2023-11-22 13:58:50 +08:00
GraveAccent = 96, // "`"
2023-11-12 16:58:24 +08:00
Dash = 0x2d, // "-"
Slash = 0x2f, // "/"
Zero = 0x30, // "0"
Nine = 0x39, // "9"
Semi = 0x3b, // ";"
Lt = 0x3c, // "<"
Eq = 0x3d, // "="
Gt = 0x3e, // ">"
Questionmark = 0x3f, // "?"
UpperA = 0x41, // "A"
LowerA = 0x61, // "a"
UpperF = 0x46, // "F"
LowerF = 0x66, // "f"
UpperZ = 0x5a, // "Z"
LowerZ = 0x7a, // "z"
LowerX = 0x78, // "x"
2023-11-15 01:14:36 +08:00
LowerV = 0x76, // "v"
Dot = 0x2e, // "."
Colon = 0x3a, // ":"
At = 0x40, // "@"
2023-11-29 12:26:10 +08:00
LeftSquare = 91, // "["
2023-11-15 01:14:36 +08:00
RightSquare = 93, // "]"
2023-11-12 16:58:24 +08:00
}
const defaultDelimitersOpen = new Uint8Array([123, 123]) // "{{"
const defaultDelimitersClose = new Uint8Array([125, 125]) // "}}"
2023-11-15 23:33:57 +08:00
2023-11-12 16:58:24 +08:00
/** All the states the tokenizer can be in. */
export enum State {
2023-11-12 16:58:24 +08:00
Text = 1,
2023-11-18 11:22:15 +08:00
// interpolation
InterpolationOpen,
2023-11-15 23:33:57 +08:00
Interpolation,
2023-11-18 11:22:15 +08:00
InterpolationClose,
2023-11-15 23:33:57 +08:00
// Tags
2023-11-12 16:58:24 +08:00
BeforeTagName, // After <
InTagName,
InSelfClosingTag,
BeforeClosingTagName,
InClosingTagName,
AfterClosingTagName,
2023-11-22 14:01:20 +08:00
// Attrs
BeforeAttrName,
InAttrName,
InDirName,
InDirArg,
InDirDynamicArg,
InDirModifier,
AfterAttrName,
BeforeAttrValue,
InAttrValueDq, // "
InAttrValueSq, // '
InAttrValueNq,
2023-11-12 16:58:24 +08:00
// Declarations
BeforeDeclaration, // !
InDeclaration,
// Processing instructions
InProcessingInstruction, // ?
// Comments & CDATA
BeforeComment,
CDATASequence,
InSpecialComment,
InCommentLike,
// Special tags
BeforeSpecialS, // Decide if we deal with `<script` or `<style`
2023-11-16 17:04:07 +08:00
BeforeSpecialT, // Decide if we deal with `<title` or `<textarea`
2023-11-12 16:58:24 +08:00
SpecialStartSequence,
InRCDATA,
2023-11-12 16:58:24 +08:00
2023-11-17 09:22:12 +08:00
InEntity,
InSFCRootTagName,
2023-11-12 16:58:24 +08:00
}
/**
* HTML only allows ASCII alpha characters (a-z and A-Z) at the beginning of a
* tag name.
*/
function isTagStartChar(c: number): boolean {
return (
(c >= CharCodes.LowerA && c <= CharCodes.LowerZ) ||
(c >= CharCodes.UpperA && c <= CharCodes.UpperZ)
)
}
2023-11-14 21:55:16 +08:00
export function isWhitespace(c: number): boolean {
2023-11-12 16:58:24 +08:00
return (
c === CharCodes.Space ||
c === CharCodes.NewLine ||
c === CharCodes.Tab ||
c === CharCodes.FormFeed ||
c === CharCodes.CarriageReturn
)
}
function isEndOfTagSection(c: number): boolean {
return c === CharCodes.Slash || c === CharCodes.Gt || isWhitespace(c)
}
2023-11-17 09:22:12 +08:00
export function toCharCodes(str: string): Uint8Array {
const ret = new Uint8Array(str.length)
for (let i = 0; i < str.length; i++) {
ret[i] = str.charCodeAt(i)
}
return ret
}
2023-11-12 16:58:24 +08:00
export enum QuoteType {
NoValue = 0,
Unquoted = 1,
Single = 2,
Double = 3,
}
export interface Callbacks {
2023-11-14 16:35:52 +08:00
ontext(start: number, endIndex: number): void
2023-11-19 10:39:11 +08:00
ontextentity(char: string, start: number, endIndex: number): void
2023-11-14 16:35:52 +08:00
2023-11-15 23:33:57 +08:00
oninterpolation(start: number, endIndex: number): void
2023-11-14 16:35:52 +08:00
onopentagname(start: number, endIndex: number): void
onopentagend(endIndex: number): void
onselfclosingtag(endIndex: number): void
onclosetag(start: number, endIndex: number): void
2023-11-12 16:58:24 +08:00
onattribdata(start: number, endIndex: number): void
2023-11-19 10:39:11 +08:00
onattribentity(char: string, start: number, end: number): void
2023-11-12 16:58:24 +08:00
onattribend(quote: QuoteType, endIndex: number): void
onattribname(start: number, endIndex: number): void
2023-11-15 19:36:05 +08:00
onattribnameend(endIndex: number): void
2023-11-14 16:35:52 +08:00
2023-11-15 01:14:36 +08:00
ondirname(start: number, endIndex: number): void
ondirarg(start: number, endIndex: number): void
ondirmodifier(start: number, endIndex: number): void
2023-11-16 11:05:31 +08:00
oncomment(start: number, endIndex: number): void
oncdata(start: number, endIndex: number): void
2023-11-14 16:35:52 +08:00
2023-11-22 13:58:50 +08:00
onprocessinginstruction(start: number, endIndex: number): void
2023-11-14 16:35:52 +08:00
// ondeclaration(start: number, endIndex: number): void
2023-11-12 16:58:24 +08:00
onend(): void
2023-11-22 13:58:50 +08:00
onerr(code: ErrorCodes, index: number): void
2023-11-12 16:58:24 +08:00
}
/**
* Sequences used to match longer strings.
*
* We don't have `Script`, `Style`, or `Title` here. Instead, we re-use the *End
* sequences with an increased offset.
*/
2023-11-22 13:58:50 +08:00
export const Sequences = {
2023-11-12 16:58:24 +08:00
Cdata: new Uint8Array([0x43, 0x44, 0x41, 0x54, 0x41, 0x5b]), // CDATA[
CdataEnd: new Uint8Array([0x5d, 0x5d, 0x3e]), // ]]>
CommentEnd: new Uint8Array([0x2d, 0x2d, 0x3e]), // `-->`
ScriptEnd: new Uint8Array([0x3c, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74]), // `</script`
StyleEnd: new Uint8Array([0x3c, 0x2f, 0x73, 0x74, 0x79, 0x6c, 0x65]), // `</style`
2023-11-16 17:04:07 +08:00
TitleEnd: new Uint8Array([0x3c, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65]), // `</title`
TextareaEnd: new Uint8Array([
0x3c, 0x2f, 116, 101, 120, 116, 97, 114, 101, 97,
]), // `</textarea
2023-11-12 16:58:24 +08:00
}
export default class Tokenizer {
/** The current state the tokenizer is in. */
2023-11-22 13:58:50 +08:00
public state = State.Text
2023-11-12 16:58:24 +08:00
/** The read buffer. */
private buffer = ''
/** The beginning of the section that is currently being read. */
2023-11-22 13:58:50 +08:00
public sectionStart = 0
2023-11-12 16:58:24 +08:00
/** The index within the buffer that we are currently looking at. */
private index = 0
/** The start of the last entity. */
private entityStart = 0
/** Some behavior, eg. when decoding entities, is done while we are in another state. This keeps track of the other state type. */
private baseState = State.Text
/** For special parsing behavior inside of script and style tags. */
2023-11-17 17:46:47 +08:00
public inRCDATA = false
2023-11-19 11:46:44 +08:00
/** For disabling RCDATA tags handling */
public inXML = false
/** For disabling interpolation parsing in v-pre */
public inVPre = false
2023-11-29 12:26:10 +08:00
/** Record newline positions for fast line / column calculation */
2023-11-14 16:35:52 +08:00
private newlines: number[] = []
2023-11-12 16:58:24 +08:00
2023-11-18 21:39:31 +08:00
private readonly entityDecoder?: EntityDecoder
2023-11-12 16:58:24 +08:00
public mode = ParseMode.BASE
public get inSFCRoot() {
return this.mode === ParseMode.SFC && this.stack.length === 0
}
2023-11-17 09:22:12 +08:00
constructor(
private readonly stack: ElementNode[],
private readonly cbs: Callbacks,
) {
2023-11-18 21:39:31 +08:00
if (!__BROWSER__) {
this.entityDecoder = new EntityDecoder(htmlDecodeTree, (cp, consumed) =>
this.emitCodePoint(cp, consumed),
)
}
2023-11-12 16:58:24 +08:00
}
public reset(): void {
this.state = State.Text
2023-11-17 09:22:12 +08:00
this.mode = ParseMode.BASE
2023-11-12 16:58:24 +08:00
this.buffer = ''
2023-11-14 16:35:52 +08:00
this.sectionStart = 0
2023-11-12 16:58:24 +08:00
this.index = 0
this.baseState = State.Text
this.inRCDATA = false
2023-11-12 16:58:24 +08:00
this.currentSequence = undefined!
2023-11-14 16:35:52 +08:00
this.newlines.length = 0
2023-11-15 23:33:57 +08:00
this.delimiterOpen = defaultDelimitersOpen
this.delimiterClose = defaultDelimitersClose
2023-11-12 16:58:24 +08:00
}
2023-11-14 16:35:52 +08:00
/**
* Generate Position object with line / column information using recorded
* newline positions. We know the index is always going to be an already
* processed index, so all the newlines up to this index should have been
* recorded.
*/
2023-11-15 19:36:05 +08:00
public getPos(index: number): Position {
2023-11-14 16:35:52 +08:00
let line = 1
let column = index + 1
for (let i = this.newlines.length - 1; i >= 0; i--) {
const newlineIndex = this.newlines[i]
if (index > newlineIndex) {
line = i + 2
column = index - newlineIndex
break
}
}
return {
2023-11-14 18:03:00 +08:00
column,
2023-11-14 16:35:52 +08:00
line,
2023-11-14 18:03:00 +08:00
offset: index,
2023-11-14 16:35:52 +08:00
}
2023-11-14 01:14:33 +08:00
}
private peek() {
return this.buffer.charCodeAt(this.index + 1)
}
2023-11-12 16:58:24 +08:00
private stateText(c: number): void {
2023-11-15 23:33:57 +08:00
if (c === CharCodes.Lt) {
2023-11-12 16:58:24 +08:00
if (this.index > this.sectionStart) {
this.cbs.ontext(this.sectionStart, this.index)
}
this.state = State.BeforeTagName
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index
2023-11-18 21:39:31 +08:00
} else if (!__BROWSER__ && c === CharCodes.Amp) {
2023-11-12 16:58:24 +08:00
this.startEntity()
} else if (!this.inVPre && c === this.delimiterOpen[0]) {
2023-11-18 11:22:15 +08:00
this.state = State.InterpolationOpen
this.delimiterIndex = 0
this.stateInterpolationOpen(c)
2023-11-15 23:33:57 +08:00
}
}
public delimiterOpen: Uint8Array = defaultDelimitersOpen
public delimiterClose: Uint8Array = defaultDelimitersClose
2023-11-18 11:22:15 +08:00
private delimiterIndex = -1
private stateInterpolationOpen(c: number): void {
if (c === this.delimiterOpen[this.delimiterIndex]) {
if (this.delimiterIndex === this.delimiterOpen.length - 1) {
const start = this.index + 1 - this.delimiterOpen.length
if (start > this.sectionStart) {
this.cbs.ontext(this.sectionStart, start)
2023-11-15 23:33:57 +08:00
}
2023-11-18 11:22:15 +08:00
this.state = State.Interpolation
this.sectionStart = start
} else {
this.delimiterIndex++
2023-11-15 23:33:57 +08:00
}
2023-11-19 10:39:11 +08:00
} else if (this.inRCDATA) {
this.state = State.InRCDATA
this.stateInRCDATA(c)
2023-11-18 11:22:15 +08:00
} else {
this.state = State.Text
this.stateText(c)
2023-11-15 23:33:57 +08:00
}
}
private stateInterpolation(c: number): void {
2023-11-18 11:22:15 +08:00
if (c === this.delimiterClose[0]) {
this.state = State.InterpolationClose
this.delimiterIndex = 0
this.stateInterpolationClose(c)
}
}
private stateInterpolationClose(c: number) {
if (c === this.delimiterClose[this.delimiterIndex]) {
if (this.delimiterIndex === this.delimiterClose.length - 1) {
this.cbs.oninterpolation(this.sectionStart, this.index + 1)
2023-11-19 10:39:11 +08:00
if (this.inRCDATA) {
this.state = State.InRCDATA
2023-11-19 10:39:11 +08:00
} else {
this.state = State.Text
}
2023-11-18 11:22:15 +08:00
this.sectionStart = this.index + 1
} else {
this.delimiterIndex++
}
} else {
this.state = State.Interpolation
this.stateInterpolation(c)
2023-11-12 16:58:24 +08:00
}
}
2023-11-22 13:58:50 +08:00
public currentSequence: Uint8Array = undefined!
2023-11-12 16:58:24 +08:00
private sequenceIndex = 0
private stateSpecialStartSequence(c: number): void {
const isEnd = this.sequenceIndex === this.currentSequence.length
const isMatch = isEnd
? // If we are at the end of the sequence, make sure the tag name has ended
isEndOfTagSection(c)
: // Otherwise, do a case-insensitive comparison
(c | 0x20) === this.currentSequence[this.sequenceIndex]
if (!isMatch) {
2023-11-17 17:46:47 +08:00
this.inRCDATA = false
2023-11-12 16:58:24 +08:00
} else if (!isEnd) {
this.sequenceIndex++
return
}
this.sequenceIndex = 0
this.state = State.InTagName
this.stateInTagName(c)
}
2023-11-17 09:22:12 +08:00
/** Look for an end tag. For <title> and <textarea>, also decode entities. */
private stateInRCDATA(c: number): void {
2023-11-12 16:58:24 +08:00
if (this.sequenceIndex === this.currentSequence.length) {
if (c === CharCodes.Gt || isWhitespace(c)) {
const endOfText = this.index - this.currentSequence.length
if (this.sectionStart < endOfText) {
// Spoof the index so that reported locations match up.
const actualIndex = this.index
this.index = endOfText
this.cbs.ontext(this.sectionStart, endOfText)
this.index = actualIndex
}
2023-11-14 16:35:52 +08:00
this.sectionStart = endOfText + 2 // Skip over the `</`
2023-11-12 16:58:24 +08:00
this.stateInClosingTagName(c)
2023-11-17 17:46:47 +08:00
this.inRCDATA = false
2023-11-12 16:58:24 +08:00
return // We are done; skip the rest of the function.
}
this.sequenceIndex = 0
}
if ((c | 0x20) === this.currentSequence[this.sequenceIndex]) {
this.sequenceIndex += 1
} else if (this.sequenceIndex === 0) {
2023-11-16 17:04:07 +08:00
if (
this.currentSequence === Sequences.TitleEnd ||
(this.currentSequence === Sequences.TextareaEnd && !this.inSFCRoot)
2023-11-16 17:04:07 +08:00
) {
// We have to parse entities in <title> and <textarea> tags.
2023-11-18 21:39:31 +08:00
if (!__BROWSER__ && c === CharCodes.Amp) {
2023-11-12 16:58:24 +08:00
this.startEntity()
2023-11-19 10:39:11 +08:00
} else if (c === this.delimiterOpen[0]) {
// We also need to handle interpolation
this.state = State.InterpolationOpen
this.delimiterIndex = 0
this.stateInterpolationOpen(c)
2023-11-12 16:58:24 +08:00
}
} else if (this.fastForwardTo(CharCodes.Lt)) {
2023-11-16 17:04:07 +08:00
// Outside of <title> and <textarea> tags, we can fast-forward.
2023-11-12 16:58:24 +08:00
this.sequenceIndex = 1
}
} else {
// If we see a `<`, set the sequence index to 1; useful for eg. `<</script>`.
this.sequenceIndex = Number(c === CharCodes.Lt)
}
}
private stateCDATASequence(c: number): void {
if (c === Sequences.Cdata[this.sequenceIndex]) {
if (++this.sequenceIndex === Sequences.Cdata.length) {
this.state = State.InCommentLike
this.currentSequence = Sequences.CdataEnd
this.sequenceIndex = 0
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
}
} else {
this.sequenceIndex = 0
this.state = State.InDeclaration
this.stateInDeclaration(c) // Reconsume the character
}
}
/**
* When we wait for one specific character, we can speed things up
* by skipping through the buffer until we find it.
*
* @returns Whether the character was found.
*/
private fastForwardTo(c: number): boolean {
2023-11-13 21:03:39 +08:00
while (++this.index < this.buffer.length) {
const cc = this.buffer.charCodeAt(this.index)
if (cc === CharCodes.NewLine) {
this.newlines.push(this.index)
}
if (cc === c) {
2023-11-12 16:58:24 +08:00
return true
}
}
/*
* We increment the index at the end of the `parse` loop,
* so set it to `buffer.length - 1` here.
*
* TODO: Refactor `parse` to increment index before calling states.
*/
2023-11-13 21:03:39 +08:00
this.index = this.buffer.length - 1
2023-11-12 16:58:24 +08:00
return false
}
/**
* Comments and CDATA end with `-->` and `]]>`.
*
* Their common qualities are:
* - Their end sequences have a distinct character they start with.
* - That character is then repeated, so we have to check multiple repeats.
* - All characters but the start character of the sequence can be skipped.
*/
private stateInCommentLike(c: number): void {
if (c === this.currentSequence[this.sequenceIndex]) {
if (++this.sequenceIndex === this.currentSequence.length) {
if (this.currentSequence === Sequences.CdataEnd) {
2023-11-16 11:05:31 +08:00
this.cbs.oncdata(this.sectionStart, this.index - 2)
2023-11-12 16:58:24 +08:00
} else {
2023-11-16 11:05:31 +08:00
this.cbs.oncomment(this.sectionStart, this.index - 2)
2023-11-12 16:58:24 +08:00
}
this.sequenceIndex = 0
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
this.state = State.Text
}
} else if (this.sequenceIndex === 0) {
// Fast-forward to the first character of the sequence
if (this.fastForwardTo(this.currentSequence[0])) {
this.sequenceIndex = 1
}
} else if (c !== this.currentSequence[this.sequenceIndex - 1]) {
// Allow long sequences, eg. --->, ]]]>
this.sequenceIndex = 0
}
}
private startSpecial(sequence: Uint8Array, offset: number) {
this.enterRCDATA(sequence, offset)
this.state = State.SpecialStartSequence
}
public enterRCDATA(sequence: Uint8Array, offset: number) {
2023-11-17 17:46:47 +08:00
this.inRCDATA = true
2023-11-12 16:58:24 +08:00
this.currentSequence = sequence
this.sequenceIndex = offset
}
private stateBeforeTagName(c: number): void {
if (c === CharCodes.ExclamationMark) {
this.state = State.BeforeDeclaration
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
} else if (c === CharCodes.Questionmark) {
this.state = State.InProcessingInstruction
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
} else if (isTagStartChar(c)) {
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index
2023-11-17 09:22:12 +08:00
if (this.mode === ParseMode.BASE) {
// no special tags in base mode
this.state = State.InTagName
} else if (this.inSFCRoot) {
2023-11-17 09:22:12 +08:00
// SFC mode + root level
// - everything except <template> is RAWTEXT
// - <template> with lang other than html is also RAWTEXT
this.state = State.InSFCRootTagName
2023-11-19 11:46:44 +08:00
} else if (!this.inXML) {
2023-11-17 09:22:12 +08:00
// HTML mode
// - <script>, <style> RAWTEXT
// - <title>, <textarea> RCDATA
const lower = c | 0x20
if (lower === 116 /* t */) {
this.state = State.BeforeSpecialT
} else {
this.state =
lower === 115 /* s */ ? State.BeforeSpecialS : State.InTagName
}
2023-11-19 11:46:44 +08:00
} else {
this.state = State.InTagName
2023-11-12 16:58:24 +08:00
}
} else if (c === CharCodes.Slash) {
this.state = State.BeforeClosingTagName
} else {
this.state = State.Text
this.stateText(c)
}
}
private stateInTagName(c: number): void {
if (isEndOfTagSection(c)) {
2023-11-17 09:22:12 +08:00
this.handleTagName(c)
}
}
private stateInSFCRootTagName(c: number): void {
if (isEndOfTagSection(c)) {
const tag = this.buffer.slice(this.sectionStart, this.index)
if (tag !== 'template') {
this.enterRCDATA(toCharCodes(`</` + tag), 0)
2023-11-17 09:22:12 +08:00
}
this.handleTagName(c)
2023-11-12 16:58:24 +08:00
}
}
2023-11-17 09:22:12 +08:00
private handleTagName(c: number) {
this.cbs.onopentagname(this.sectionStart, this.index)
this.sectionStart = -1
2023-11-22 14:01:20 +08:00
this.state = State.BeforeAttrName
this.stateBeforeAttrName(c)
2023-11-17 09:22:12 +08:00
}
2023-11-12 16:58:24 +08:00
private stateBeforeClosingTagName(c: number): void {
if (isWhitespace(c)) {
// Ignore
} else if (c === CharCodes.Gt) {
2023-11-22 13:58:50 +08:00
if (__DEV__ || !__BROWSER__) {
this.cbs.onerr(ErrorCodes.MISSING_END_TAG_NAME, this.index)
}
2023-11-12 16:58:24 +08:00
this.state = State.Text
2023-11-22 13:58:50 +08:00
// Ignore
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
} else {
this.state = isTagStartChar(c)
2023-11-12 16:58:24 +08:00
? State.InClosingTagName
: State.InSpecialComment
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index
2023-11-12 16:58:24 +08:00
}
}
private stateInClosingTagName(c: number): void {
if (c === CharCodes.Gt || isWhitespace(c)) {
this.cbs.onclosetag(this.sectionStart, this.index)
2023-11-14 16:35:52 +08:00
this.sectionStart = -1
2023-11-12 16:58:24 +08:00
this.state = State.AfterClosingTagName
this.stateAfterClosingTagName(c)
}
}
private stateAfterClosingTagName(c: number): void {
// Skip everything until ">"
2023-11-22 13:58:50 +08:00
if (c === CharCodes.Gt) {
2023-11-12 16:58:24 +08:00
this.state = State.Text
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
}
}
2023-11-22 14:01:20 +08:00
private stateBeforeAttrName(c: number): void {
2023-11-12 16:58:24 +08:00
if (c === CharCodes.Gt) {
this.cbs.onopentagend(this.index)
2023-11-17 17:46:47 +08:00
if (this.inRCDATA) {
this.state = State.InRCDATA
2023-11-12 16:58:24 +08:00
} else {
this.state = State.Text
}
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
} else if (c === CharCodes.Slash) {
this.state = State.InSelfClosingTag
if ((__DEV__ || !__BROWSER__) && this.peek() !== CharCodes.Gt) {
2023-11-22 13:58:50 +08:00
this.cbs.onerr(ErrorCodes.UNEXPECTED_SOLIDUS_IN_TAG, this.index)
}
} else if (c === CharCodes.Lt && this.peek() === CharCodes.Slash) {
// special handling for </ appearing in open tag state
// this is different from standard HTML parsing but makes practical sense
2023-11-29 12:26:10 +08:00
// especially for parsing intermediate input state in IDEs.
this.cbs.onopentagend(this.index)
this.state = State.BeforeTagName
this.sectionStart = this.index
2023-11-12 16:58:24 +08:00
} else if (!isWhitespace(c)) {
2023-11-22 13:58:50 +08:00
if ((__DEV__ || !__BROWSER__) && c === CharCodes.Eq) {
this.cbs.onerr(
ErrorCodes.UNEXPECTED_EQUALS_SIGN_BEFORE_ATTRIBUTE_NAME,
this.index,
)
}
2023-11-22 14:01:20 +08:00
this.handleAttrStart(c)
2023-11-15 01:14:36 +08:00
}
}
2023-11-22 14:01:20 +08:00
private handleAttrStart(c: number) {
if (c === CharCodes.LowerV && this.peek() === CharCodes.Dash) {
2023-11-22 14:01:20 +08:00
this.state = State.InDirName
2023-11-15 01:14:36 +08:00
this.sectionStart = this.index
} else if (
c === CharCodes.Dot ||
c === CharCodes.Colon ||
c === CharCodes.At ||
c === CharCodes.Number
) {
this.cbs.ondirname(this.index, this.index + 1)
2023-11-22 14:01:20 +08:00
this.state = State.InDirArg
2023-11-15 01:14:36 +08:00
this.sectionStart = this.index + 1
} else {
2023-11-22 14:01:20 +08:00
this.state = State.InAttrName
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index
2023-11-12 16:58:24 +08:00
}
}
private stateInSelfClosingTag(c: number): void {
if (c === CharCodes.Gt) {
this.cbs.onselfclosingtag(this.index)
this.state = State.Text
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-17 17:46:47 +08:00
this.inRCDATA = false // Reset special state, in case of self-closing special tags
2023-11-12 16:58:24 +08:00
} else if (!isWhitespace(c)) {
2023-11-22 14:01:20 +08:00
this.state = State.BeforeAttrName
this.stateBeforeAttrName(c)
2023-11-12 16:58:24 +08:00
}
}
2023-11-22 14:01:20 +08:00
private stateInAttrName(c: number): void {
2023-11-12 16:58:24 +08:00
if (c === CharCodes.Eq || isEndOfTagSection(c)) {
this.cbs.onattribname(this.sectionStart, this.index)
2023-11-22 14:01:20 +08:00
this.handleAttrNameEnd(c)
2023-11-22 13:58:50 +08:00
} else if (
(__DEV__ || !__BROWSER__) &&
(c === CharCodes.DoubleQuote ||
c === CharCodes.SingleQuote ||
c === CharCodes.Lt)
) {
this.cbs.onerr(
ErrorCodes.UNEXPECTED_CHARACTER_IN_ATTRIBUTE_NAME,
this.index,
)
2023-11-12 16:58:24 +08:00
}
}
2023-11-22 14:01:20 +08:00
private stateInDirName(c: number): void {
2023-11-15 01:14:36 +08:00
if (c === CharCodes.Eq || isEndOfTagSection(c)) {
this.cbs.ondirname(this.sectionStart, this.index)
2023-11-22 14:01:20 +08:00
this.handleAttrNameEnd(c)
2023-11-15 01:14:36 +08:00
} else if (c === CharCodes.Colon) {
this.cbs.ondirname(this.sectionStart, this.index)
2023-11-22 14:01:20 +08:00
this.state = State.InDirArg
2023-11-15 01:14:36 +08:00
this.sectionStart = this.index + 1
} else if (c === CharCodes.Dot) {
this.cbs.ondirname(this.sectionStart, this.index)
2023-11-22 14:01:20 +08:00
this.state = State.InDirModifier
2023-11-15 01:14:36 +08:00
this.sectionStart = this.index + 1
}
}
2023-11-22 14:01:20 +08:00
private stateInDirArg(c: number): void {
2023-11-15 01:14:36 +08:00
if (c === CharCodes.Eq || isEndOfTagSection(c)) {
this.cbs.ondirarg(this.sectionStart, this.index)
2023-11-22 14:01:20 +08:00
this.handleAttrNameEnd(c)
2023-11-29 12:26:10 +08:00
} else if (c === CharCodes.LeftSquare) {
2023-11-22 14:01:20 +08:00
this.state = State.InDirDynamicArg
2023-11-15 01:14:36 +08:00
} else if (c === CharCodes.Dot) {
this.cbs.ondirarg(this.sectionStart, this.index)
2023-11-22 14:01:20 +08:00
this.state = State.InDirModifier
2023-11-15 01:14:36 +08:00
this.sectionStart = this.index + 1
}
}
2023-11-22 14:01:20 +08:00
private stateInDynamicDirArg(c: number): void {
2023-11-15 01:14:36 +08:00
if (c === CharCodes.RightSquare) {
2023-11-22 14:01:20 +08:00
this.state = State.InDirArg
2023-11-15 01:14:36 +08:00
} else if (c === CharCodes.Eq || isEndOfTagSection(c)) {
2023-11-22 13:58:50 +08:00
this.cbs.ondirarg(this.sectionStart, this.index + 1)
2023-11-22 14:01:20 +08:00
this.handleAttrNameEnd(c)
2023-11-22 13:58:50 +08:00
if (__DEV__ || !__BROWSER__) {
this.cbs.onerr(
ErrorCodes.X_MISSING_DYNAMIC_DIRECTIVE_ARGUMENT_END,
this.index,
)
}
2023-11-15 01:14:36 +08:00
}
}
2023-11-22 14:01:20 +08:00
private stateInDirModifier(c: number): void {
2023-11-15 01:14:36 +08:00
if (c === CharCodes.Eq || isEndOfTagSection(c)) {
this.cbs.ondirmodifier(this.sectionStart, this.index)
2023-11-22 14:01:20 +08:00
this.handleAttrNameEnd(c)
2023-11-15 01:14:36 +08:00
} else if (c === CharCodes.Dot) {
this.cbs.ondirmodifier(this.sectionStart, this.index)
this.sectionStart = this.index + 1
}
}
2023-11-22 14:01:20 +08:00
private handleAttrNameEnd(c: number): void {
2023-11-15 19:36:05 +08:00
this.sectionStart = this.index
2023-11-22 14:01:20 +08:00
this.state = State.AfterAttrName
2023-11-15 19:36:05 +08:00
this.cbs.onattribnameend(this.index)
2023-11-22 14:01:20 +08:00
this.stateAfterAttrName(c)
2023-11-15 19:36:05 +08:00
}
2023-11-22 14:01:20 +08:00
private stateAfterAttrName(c: number): void {
2023-11-12 16:58:24 +08:00
if (c === CharCodes.Eq) {
2023-11-22 14:01:20 +08:00
this.state = State.BeforeAttrValue
2023-11-12 16:58:24 +08:00
} else if (c === CharCodes.Slash || c === CharCodes.Gt) {
this.cbs.onattribend(QuoteType.NoValue, this.sectionStart)
2023-11-14 16:35:52 +08:00
this.sectionStart = -1
2023-11-22 14:01:20 +08:00
this.state = State.BeforeAttrName
this.stateBeforeAttrName(c)
2023-11-12 16:58:24 +08:00
} else if (!isWhitespace(c)) {
this.cbs.onattribend(QuoteType.NoValue, this.sectionStart)
2023-11-22 14:01:20 +08:00
this.handleAttrStart(c)
2023-11-12 16:58:24 +08:00
}
}
2023-11-22 14:01:20 +08:00
private stateBeforeAttrValue(c: number): void {
2023-11-12 16:58:24 +08:00
if (c === CharCodes.DoubleQuote) {
2023-11-22 14:01:20 +08:00
this.state = State.InAttrValueDq
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
} else if (c === CharCodes.SingleQuote) {
2023-11-22 14:01:20 +08:00
this.state = State.InAttrValueSq
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
} else if (!isWhitespace(c)) {
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index
2023-11-22 14:01:20 +08:00
this.state = State.InAttrValueNq
this.stateInAttrValueNoQuotes(c) // Reconsume token
2023-11-12 16:58:24 +08:00
}
}
2023-11-22 14:01:20 +08:00
private handleInAttrValue(c: number, quote: number) {
2023-11-18 21:39:31 +08:00
if (c === quote || (__BROWSER__ && this.fastForwardTo(quote))) {
2023-11-12 16:58:24 +08:00
this.cbs.onattribdata(this.sectionStart, this.index)
2023-11-14 16:35:52 +08:00
this.sectionStart = -1
2023-11-12 16:58:24 +08:00
this.cbs.onattribend(
quote === CharCodes.DoubleQuote ? QuoteType.Double : QuoteType.Single,
this.index + 1,
)
2023-11-22 14:01:20 +08:00
this.state = State.BeforeAttrName
2023-11-18 21:39:31 +08:00
} else if (!__BROWSER__ && c === CharCodes.Amp) {
2023-11-12 16:58:24 +08:00
this.startEntity()
}
}
2023-11-22 14:01:20 +08:00
private stateInAttrValueDoubleQuotes(c: number): void {
this.handleInAttrValue(c, CharCodes.DoubleQuote)
2023-11-12 16:58:24 +08:00
}
2023-11-22 14:01:20 +08:00
private stateInAttrValueSingleQuotes(c: number): void {
this.handleInAttrValue(c, CharCodes.SingleQuote)
2023-11-12 16:58:24 +08:00
}
2023-11-22 14:01:20 +08:00
private stateInAttrValueNoQuotes(c: number): void {
2023-11-12 16:58:24 +08:00
if (isWhitespace(c) || c === CharCodes.Gt) {
this.cbs.onattribdata(this.sectionStart, this.index)
2023-11-14 16:35:52 +08:00
this.sectionStart = -1
2023-11-12 16:58:24 +08:00
this.cbs.onattribend(QuoteType.Unquoted, this.index)
2023-11-22 14:01:20 +08:00
this.state = State.BeforeAttrName
this.stateBeforeAttrName(c)
2023-11-22 13:58:50 +08:00
} else if (
((__DEV__ || !__BROWSER__) && c === CharCodes.DoubleQuote) ||
c === CharCodes.SingleQuote ||
c === CharCodes.Lt ||
c === CharCodes.Eq ||
c === CharCodes.GraveAccent
) {
this.cbs.onerr(
ErrorCodes.UNEXPECTED_CHARACTER_IN_UNQUOTED_ATTRIBUTE_VALUE,
this.index,
)
2023-11-18 21:39:31 +08:00
} else if (!__BROWSER__ && c === CharCodes.Amp) {
2023-11-12 16:58:24 +08:00
this.startEntity()
}
}
private stateBeforeDeclaration(c: number): void {
if (c === CharCodes.LeftSquare) {
2023-11-12 16:58:24 +08:00
this.state = State.CDATASequence
this.sequenceIndex = 0
} else {
this.state =
c === CharCodes.Dash ? State.BeforeComment : State.InDeclaration
}
}
private stateInDeclaration(c: number): void {
if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) {
2023-11-14 16:35:52 +08:00
// this.cbs.ondeclaration(this.sectionStart, this.index)
2023-11-12 16:58:24 +08:00
this.state = State.Text
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
}
}
private stateInProcessingInstruction(c: number): void {
if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) {
2023-11-22 13:58:50 +08:00
this.cbs.onprocessinginstruction(this.sectionStart, this.index)
2023-11-12 16:58:24 +08:00
this.state = State.Text
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
}
}
private stateBeforeComment(c: number): void {
if (c === CharCodes.Dash) {
this.state = State.InCommentLike
this.currentSequence = Sequences.CommentEnd
// Allow short comments (eg. <!-->)
this.sequenceIndex = 2
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
} else {
this.state = State.InDeclaration
}
}
private stateInSpecialComment(c: number): void {
if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) {
2023-11-16 11:05:31 +08:00
this.cbs.oncomment(this.sectionStart, this.index)
2023-11-12 16:58:24 +08:00
this.state = State.Text
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index + 1
2023-11-12 16:58:24 +08:00
}
}
private stateBeforeSpecialS(c: number): void {
const lower = c | 0x20
if (lower === Sequences.ScriptEnd[3]) {
this.startSpecial(Sequences.ScriptEnd, 4)
} else if (lower === Sequences.StyleEnd[3]) {
this.startSpecial(Sequences.StyleEnd, 4)
} else {
this.state = State.InTagName
this.stateInTagName(c) // Consume the token again
}
}
2023-11-16 17:04:07 +08:00
private stateBeforeSpecialT(c: number): void {
const lower = c | 0x20
if (lower === Sequences.TitleEnd[3]) {
this.startSpecial(Sequences.TitleEnd, 4)
} else if (lower === Sequences.TextareaEnd[3]) {
this.startSpecial(Sequences.TextareaEnd, 4)
} else {
this.state = State.InTagName
this.stateInTagName(c) // Consume the token again
}
}
2023-11-12 16:58:24 +08:00
private startEntity() {
2023-11-18 21:39:31 +08:00
if (!__BROWSER__) {
this.baseState = this.state
this.state = State.InEntity
this.entityStart = this.index
this.entityDecoder!.startEntity(
this.baseState === State.Text || this.baseState === State.InRCDATA
2023-11-18 21:39:31 +08:00
? DecodingMode.Legacy
: DecodingMode.Attribute,
)
}
2023-11-12 16:58:24 +08:00
}
private stateInEntity(): void {
2023-11-18 21:39:31 +08:00
if (!__BROWSER__) {
const length = this.entityDecoder!.write(this.buffer, this.index)
2023-11-12 16:58:24 +08:00
2023-11-18 21:39:31 +08:00
// If `length` is positive, we are done with the entity.
if (length >= 0) {
this.state = this.baseState
2023-11-12 16:58:24 +08:00
2023-11-18 21:39:31 +08:00
if (length === 0) {
this.index = this.entityStart
}
} else {
// Mark buffer as consumed.
this.index = this.buffer.length - 1
2023-11-12 16:58:24 +08:00
}
}
}
/**
* Iterates through the buffer, calling the function corresponding to the current state.
*
* States that are more likely to be hit are higher up, as a performance improvement.
*/
2023-11-13 21:03:39 +08:00
public parse(input: string) {
this.buffer = input
while (this.index < this.buffer.length) {
const c = this.buffer.charCodeAt(this.index)
2023-11-20 17:38:00 +08:00
if (c === CharCodes.NewLine) {
this.newlines.push(this.index)
}
2023-11-12 16:58:24 +08:00
switch (this.state) {
case State.Text: {
this.stateText(c)
break
}
2023-11-18 11:22:15 +08:00
case State.InterpolationOpen: {
this.stateInterpolationOpen(c)
break
}
2023-11-15 23:33:57 +08:00
case State.Interpolation: {
this.stateInterpolation(c)
break
}
2023-11-18 11:22:15 +08:00
case State.InterpolationClose: {
this.stateInterpolationClose(c)
break
}
2023-11-12 16:58:24 +08:00
case State.SpecialStartSequence: {
this.stateSpecialStartSequence(c)
break
}
case State.InRCDATA: {
this.stateInRCDATA(c)
2023-11-12 16:58:24 +08:00
break
}
case State.CDATASequence: {
this.stateCDATASequence(c)
break
}
2023-11-22 14:01:20 +08:00
case State.InAttrValueDq: {
this.stateInAttrValueDoubleQuotes(c)
2023-11-12 16:58:24 +08:00
break
}
2023-11-22 14:01:20 +08:00
case State.InAttrName: {
this.stateInAttrName(c)
2023-11-12 16:58:24 +08:00
break
}
2023-11-22 14:01:20 +08:00
case State.InDirName: {
this.stateInDirName(c)
2023-11-15 01:14:36 +08:00
break
}
2023-11-22 14:01:20 +08:00
case State.InDirArg: {
this.stateInDirArg(c)
2023-11-15 01:14:36 +08:00
break
}
2023-11-22 14:01:20 +08:00
case State.InDirDynamicArg: {
this.stateInDynamicDirArg(c)
2023-11-15 01:14:36 +08:00
break
}
2023-11-22 14:01:20 +08:00
case State.InDirModifier: {
this.stateInDirModifier(c)
2023-11-15 01:14:36 +08:00
break
}
2023-11-12 16:58:24 +08:00
case State.InCommentLike: {
this.stateInCommentLike(c)
break
}
case State.InSpecialComment: {
this.stateInSpecialComment(c)
break
}
2023-11-22 14:01:20 +08:00
case State.BeforeAttrName: {
this.stateBeforeAttrName(c)
2023-11-12 16:58:24 +08:00
break
}
case State.InTagName: {
this.stateInTagName(c)
break
}
2023-11-17 09:22:12 +08:00
case State.InSFCRootTagName: {
this.stateInSFCRootTagName(c)
break
}
2023-11-12 16:58:24 +08:00
case State.InClosingTagName: {
this.stateInClosingTagName(c)
break
}
case State.BeforeTagName: {
this.stateBeforeTagName(c)
break
}
2023-11-22 14:01:20 +08:00
case State.AfterAttrName: {
this.stateAfterAttrName(c)
2023-11-12 16:58:24 +08:00
break
}
2023-11-22 14:01:20 +08:00
case State.InAttrValueSq: {
this.stateInAttrValueSingleQuotes(c)
2023-11-12 16:58:24 +08:00
break
}
2023-11-22 14:01:20 +08:00
case State.BeforeAttrValue: {
this.stateBeforeAttrValue(c)
2023-11-12 16:58:24 +08:00
break
}
case State.BeforeClosingTagName: {
this.stateBeforeClosingTagName(c)
break
}
case State.AfterClosingTagName: {
this.stateAfterClosingTagName(c)
break
}
case State.BeforeSpecialS: {
this.stateBeforeSpecialS(c)
break
}
2023-11-16 17:04:07 +08:00
case State.BeforeSpecialT: {
this.stateBeforeSpecialT(c)
break
}
2023-11-22 14:01:20 +08:00
case State.InAttrValueNq: {
this.stateInAttrValueNoQuotes(c)
2023-11-12 16:58:24 +08:00
break
}
case State.InSelfClosingTag: {
this.stateInSelfClosingTag(c)
break
}
case State.InDeclaration: {
this.stateInDeclaration(c)
break
}
case State.BeforeDeclaration: {
this.stateBeforeDeclaration(c)
break
}
case State.BeforeComment: {
this.stateBeforeComment(c)
break
}
case State.InProcessingInstruction: {
this.stateInProcessingInstruction(c)
break
}
case State.InEntity: {
this.stateInEntity()
break
}
}
2023-11-14 16:35:52 +08:00
this.index++
2023-11-12 16:58:24 +08:00
}
this.cleanup()
2023-11-13 21:03:39 +08:00
this.finish()
}
/**
* Remove data that has already been consumed from the buffer.
*/
private cleanup() {
// If we are inside of text or attributes, emit what we already have.
if (this.sectionStart !== this.index) {
if (
this.state === State.Text ||
(this.state === State.InRCDATA && this.sequenceIndex === 0)
2023-11-13 21:03:39 +08:00
) {
this.cbs.ontext(this.sectionStart, this.index)
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index
2023-11-13 21:03:39 +08:00
} else if (
2023-11-22 14:01:20 +08:00
this.state === State.InAttrValueDq ||
this.state === State.InAttrValueSq ||
this.state === State.InAttrValueNq
2023-11-13 21:03:39 +08:00
) {
this.cbs.onattribdata(this.sectionStart, this.index)
2023-11-14 16:35:52 +08:00
this.sectionStart = this.index
2023-11-13 21:03:39 +08:00
}
}
2023-11-12 16:58:24 +08:00
}
private finish() {
2023-11-18 21:39:31 +08:00
if (!__BROWSER__ && this.state === State.InEntity) {
this.entityDecoder!.end()
2023-11-12 16:58:24 +08:00
this.state = this.baseState
}
this.handleTrailingData()
this.cbs.onend()
}
/** Handle any trailing data. */
private handleTrailingData() {
2023-11-13 21:03:39 +08:00
const endIndex = this.buffer.length
2023-11-12 16:58:24 +08:00
// If there is no remaining data, we are done.
if (this.sectionStart >= endIndex) {
return
}
if (this.state === State.InCommentLike) {
if (this.currentSequence === Sequences.CdataEnd) {
2023-11-16 11:05:31 +08:00
this.cbs.oncdata(this.sectionStart, endIndex)
2023-11-12 16:58:24 +08:00
} else {
2023-11-16 11:05:31 +08:00
this.cbs.oncomment(this.sectionStart, endIndex)
2023-11-12 16:58:24 +08:00
}
} else if (
this.state === State.InTagName ||
2023-11-22 14:01:20 +08:00
this.state === State.BeforeAttrName ||
this.state === State.BeforeAttrValue ||
this.state === State.AfterAttrName ||
this.state === State.InAttrName ||
this.state === State.InDirName ||
this.state === State.InDirArg ||
this.state === State.InDirDynamicArg ||
this.state === State.InDirModifier ||
this.state === State.InAttrValueSq ||
this.state === State.InAttrValueDq ||
this.state === State.InAttrValueNq ||
2023-11-12 16:58:24 +08:00
this.state === State.InClosingTagName
) {
/*
* If we are currently in an opening or closing tag, us not calling the
* respective callback signals that the tag should be ignored.
*/
} else {
this.cbs.ontext(this.sectionStart, endIndex)
}
}
private emitCodePoint(cp: number, consumed: number): void {
2023-11-18 21:39:31 +08:00
if (!__BROWSER__) {
if (this.baseState !== State.Text && this.baseState !== State.InRCDATA) {
2023-11-18 21:39:31 +08:00
if (this.sectionStart < this.entityStart) {
this.cbs.onattribdata(this.sectionStart, this.entityStart)
}
this.sectionStart = this.entityStart + consumed
this.index = this.sectionStart - 1
2023-11-12 16:58:24 +08:00
2023-11-19 10:39:11 +08:00
this.cbs.onattribentity(
fromCodePoint(cp),
this.entityStart,
this.sectionStart,
)
2023-11-18 21:39:31 +08:00
} else {
if (this.sectionStart < this.entityStart) {
this.cbs.ontext(this.sectionStart, this.entityStart)
}
this.sectionStart = this.entityStart + consumed
this.index = this.sectionStart - 1
2023-11-12 16:58:24 +08:00
2023-11-19 10:39:11 +08:00
this.cbs.ontextentity(
fromCodePoint(cp),
this.entityStart,
this.sectionStart,
)
2023-11-18 21:39:31 +08:00
}
2023-11-12 16:58:24 +08:00
}
}
}