Searched refs:onComment (Results 1 – 12 of 12) sorted by relevance
/third_party/parse5/scripts/generate-parser-feedback-test/ |
D | index.ts | 53 override onComment(token: Token.CommentToken): void { 55 () => super.onComment(token),
|
/third_party/parse5/packages/parse5-sax-parser/lib/ |
D | parser-feedback-simulator.ts | 67 onComment(token: Token.CommentToken): void { method in ParserFeedbackSimulator 69 this.handler.onComment(token);
|
D | index.ts | 206 onComment(token: Token.CommentToken): void {
|
/third_party/parse5/packages/parse5/lib/tokenizer/ |
D | index.test.ts | 20 onComment(t): void {
|
D | tokenizer-location-info.test.ts | 39 onComment({ location }: CommentToken): void { method in LocationInfoHandler
|
D | index.ts | 233 onComment(token: CommentToken): void; method 540 this.handler.onComment(ct);
|
/third_party/parse5/test/utils/ |
D | generate-tokenization-tests.ts | 33 onComment(token: Token.CommentToken): void { method in TokenizeHandler
|
/third_party/node/deps/acorn/acorn/dist/ |
D | acorn.d.ts | 29 onComment?: (( property
|
D | acorn.js | 400 onComment: null, property 459 if (isArray(options.onComment)) 460 { options.onComment = pushComment(options, options.onComment); } 5193 var startLoc = this.options.onComment && this.curPosition(); 5203 if (this.options.onComment) 5204 { this.options.onComment(true, this.input.slice(start + 2, end), start, this.pos, 5210 var startLoc = this.options.onComment && this.curPosition(); 5215 if (this.options.onComment) 5216 … { this.options.onComment(false, this.input.slice(start + startSkip, this.pos), start, this.pos,
|
D | acorn.mjs | 384 // A function can be passed as `onComment` option, which will 394 onComment: null, property 453 if (isArray(options.onComment)) 454 { options.onComment = pushComment(options, options.onComment); } 5187 var startLoc = this.options.onComment && this.curPosition(); 5197 if (this.options.onComment) 5198 { this.options.onComment(true, this.input.slice(start + 2, end), start, this.pos, 5204 var startLoc = this.options.onComment && this.curPosition(); 5209 if (this.options.onComment) 5210 { this.options.onComment(false, this.input.slice(start + startSkip, this.pos), start, this.pos,
|
/third_party/node/deps/acorn/acorn/ |
D | README.md | 130 - **onComment**: If a function is passed for this option, whenever a
|
/third_party/parse5/packages/parse5/lib/parser/ |
D | index.ts | 555 this.onComment(token); 891 onComment(token: CommentToken): void { method in Parser
|