/third_party/parse5/packages/parse5/lib/common/ |
D | token.ts | 92 export interface CommentToken extends TokenBase { interface 106 export type Token = DoctypeToken | TagToken | CommentToken | EOFToken | CharacterToken;
|
/third_party/parse5/packages/parse5/lib/tokenizer/ |
D | tokenizer-location-info.test.ts | 3 import type { Location, EOFToken, CharacterToken, DoctypeToken, TagToken, CommentToken } from '../c… 39 onComment({ location }: CommentToken): void {
|
D | index.ts | 18 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/ |
D | parserRealSource10.js | 421 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;
|
D | parserRealSource10.symbols | 2547 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 …]
|
D | parserRealSource10.types | 3858 export class CommentToken extends Token { 3859 >CommentToken : CommentToken
|
D | parserRealSource10.errors.txt | 1451 export class CommentToken extends Token {
|
/third_party/parse5/scripts/generate-parser-feedback-test/ |
D | index.ts | 53 override onComment(token: Token.CommentToken): void {
|
/third_party/parse5/packages/parse5-sax-parser/lib/ |
D | index.ts | 206 onComment(token: Token.CommentToken): void {
|
D | parser-feedback-simulator.ts | 67 onComment(token: Token.CommentToken): void {
|
/third_party/parse5/test/utils/ |
D | generate-tokenization-tests.ts | 33 onComment(token: Token.CommentToken): void {
|
/third_party/parse5/packages/parse5/lib/parser/ |
D | index.ts | 24 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/ |
D | parserRealSource10.ts | 420 export class CommentToken extends Token { class
|