Home
last modified time | relevance | path

Searched refs:httpparser (Results 1 – 4 of 4) sorted by relevance

/third_party/node/test/async-hooks/
Dtest-httpparser.response.js30 const httpparser = as[0]; constant
33 assert.strictEqual(typeof httpparser.uid, 'number');
34 assert.strictEqual(typeof httpparser.triggerAsyncId, 'number');
35 checkInvocations(httpparser, { init: 1 }, 'when created new Httphttpparser');
42 checkInvocations(httpparser, { init: 1, before: 1 },
47 checkInvocations(httpparser, { init: 1, before: 2, after: 1 },
62 checkInvocations(httpparser, { init: 1, before: 2, after: 2, destroy: 1 },
Dtest-httpparser.request.js25 const httpparser = as[0]; constant
28 assert.strictEqual(typeof httpparser.uid, 'number');
29 assert.strictEqual(typeof httpparser.triggerAsyncId, 'number');
30 checkInvocations(httpparser, { init: 1 }, 'when created new Httphttpparser');
36 checkInvocations(httpparser, { init: 1, before: 1 },
51 checkInvocations(httpparser, { init: 1, before: 1, after: 1, destroy: 1 },
Dcoverage.md12 | HTTPINCOMINGMESSAGE | test-httpparser.request.js |
13 | HTTPCLIENTREQUEST | test-httpparser.response.js |
/third_party/node/doc/changelogs/
DCHANGELOG_V8.md3433 …//github.com/nodejs/node/commit/23cd934d71)] - **test**: refactor test-httpparser.response.js (erd…