Home
last modified time | relevance | path

Searched refs:CommentToken (Results 1 – 13 of 13) sorted by relevance

/third_party/parse5/packages/parse5/lib/common/
Dtoken.ts92 export interface CommentToken extends TokenBase { interface
106 export type Token = DoctypeToken | TagToken | CommentToken | EOFToken | CharacterToken;
/third_party/parse5/packages/parse5/lib/tokenizer/
Dtokenizer-location-info.test.ts3 import type { Location, EOFToken, CharacterToken, DoctypeToken, TagToken, CommentToken } from '../c…
39 onComment({ location }: CommentToken): void {
Dindex.ts18 type CommentToken, alias
233 onComment(token: CommentToken): void;
538 private emitCurrentComment(ct: CommentToken): void {
2041 const token = this.currentToken as CommentToken;
2081 (this.currentToken as CommentToken).data = '[CDATA[';
2107 const token = this.currentToken as CommentToken;
2121 const token = this.currentToken as CommentToken;
2150 const token = this.currentToken as CommentToken;
2182 const token = this.currentToken as CommentToken;
2237 const token = this.currentToken as CommentToken;
[all …]
/third_party/typescript/tests/baselines/reference/
DparserRealSource10.js421 export class CommentToken extends Token {
902 var CommentToken = /** @class */ (function (_super) { class
903 __extends(CommentToken, _super);
904 function CommentToken(tokenID, value, isBlock, startPos, line, endsLine) { class in anonymousFunction7eba19080600.CommentToken
913 CommentToken.prototype.getText = function () { class
916 CommentToken.prototype.classification = function () {
919 return CommentToken;
921 TypeScript.CommentToken = CommentToken;
DparserRealSource10.symbols2547 export class CommentToken extends Token {
2548 >CommentToken : Symbol(CommentToken, Decl(parserRealSource10.ts, 417, 5))
2554 >value : Symbol(CommentToken.value, Decl(parserRealSource10.ts, 420, 38))
2555 >isBlock : Symbol(CommentToken.isBlock, Decl(parserRealSource10.ts, 420, 60))
2556 >startPos : Symbol(CommentToken.startPos, Decl(parserRealSource10.ts, 420, 85))
2557 >line : Symbol(CommentToken.line, Decl(parserRealSource10.ts, 420, 110))
2558 >endsLine : Symbol(CommentToken.endsLine, Decl(parserRealSource10.ts, 420, 131))
2566 >getText : Symbol(CommentToken.getText, Decl(parserRealSource10.ts, 422, 9))
2569 >this.value : Symbol(CommentToken.value, Decl(parserRealSource10.ts, 420, 38))
2570 >this : Symbol(CommentToken, Decl(parserRealSource10.ts, 417, 5))
[all …]
DparserRealSource10.types3858 export class CommentToken extends Token {
3859 >CommentToken : CommentToken
DparserRealSource10.errors.txt1451 export class CommentToken extends Token {
/third_party/parse5/scripts/generate-parser-feedback-test/
Dindex.ts53 override onComment(token: Token.CommentToken): void {
/third_party/parse5/packages/parse5-sax-parser/lib/
Dindex.ts206 onComment(token: Token.CommentToken): void {
Dparser-feedback-simulator.ts67 onComment(token: Token.CommentToken): void {
/third_party/parse5/test/utils/
Dgenerate-tokenization-tests.ts33 onComment(token: Token.CommentToken): void {
/third_party/parse5/packages/parse5/lib/parser/
Dindex.ts24 type CommentToken, alias
435 _appendCommentNode(token: CommentToken, parent: T['parentNode']): void {
891 onComment(token: CommentToken): void {
1480 function appendComment<T extends TreeAdapterTypeMap>(p: Parser<T>, token: CommentToken): void {
1484 …ndCommentToRootHtmlElement<T extends TreeAdapterTypeMap>(p: Parser<T>, token: CommentToken): void {
1488 function appendCommentToDocument<T extends TreeAdapterTypeMap>(p: Parser<T>, token: CommentToken): …
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource10.ts420 export class CommentToken extends Token { class