MCPcopy
hub / github.com/vuejs/core / stateInDeclaration

Method stateInDeclaration

packages/compiler-core/src/tokenizer.ts:855–861  ·  view source on GitHub ↗
(c: number)

Source from the content-addressed store, hash-verified

853 }
854 }
855 private stateInDeclaration(c: number): void {
856 if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) {
857 // this.cbs.ondeclaration(this.sectionStart, this.index)
858 this.state = State.Text
859 this.sectionStart = this.index + 1
860 }
861 }
862 private stateInProcessingInstruction(c: number): void {
863 if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) {
864 this.cbs.onprocessinginstruction(this.sectionStart, this.index)

Callers 2

stateCDATASequenceMethod · 0.95
parseMethod · 0.95

Calls 1

fastForwardToMethod · 0.95

Tested by

no test coverage detected