Home
last modified time | relevance | path

Searched refs:onComment (Results 1 – 12 of 12) sorted by relevance

/third_party/parse5/scripts/generate-parser-feedback-test/
Dindex.ts53 override onComment(token: Token.CommentToken): void {
55 () => super.onComment(token),
/third_party/parse5/packages/parse5-sax-parser/lib/
Dparser-feedback-simulator.ts67 onComment(token: Token.CommentToken): void { method in ParserFeedbackSimulator
69 this.handler.onComment(token);
Dindex.ts206 onComment(token: Token.CommentToken): void {
/third_party/parse5/packages/parse5/lib/tokenizer/
Dindex.test.ts20 onComment(t): void {
Dtokenizer-location-info.test.ts39 onComment({ location }: CommentToken): void { method in LocationInfoHandler
Dindex.ts233 onComment(token: CommentToken): void; method
540 this.handler.onComment(ct);
/third_party/parse5/test/utils/
Dgenerate-tokenization-tests.ts33 onComment(token: Token.CommentToken): void { method in TokenizeHandler
/third_party/node/deps/acorn/acorn/dist/
Dacorn.d.ts29 onComment?: (( property
Dacorn.js400 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,
Dacorn.mjs384 // 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/
DREADME.md130 - **onComment**: If a function is passed for this option, whenever a
/third_party/parse5/packages/parse5/lib/parser/
Dindex.ts555 this.onComment(token);
891 onComment(token: CommentToken): void { method in Parser