Home
last modified time | relevance | path

Searched refs:doesNotExist (Results 1 – 9 of 9) sorted by relevance

/third_party/node/test/parallel/
Dtest-fs-access.js22 const doesNotExist = path.join(tmpdir.path, '__this_should_not_exist'); constant
96 assert.strictEqual(err.path, doesNotExist);
98 fs.access(doesNotExist, common.mustCall(expectedError));
99 fs.promises.access(doesNotExist)
209 () => { fs.accessSync(doesNotExist); },
212 assert.strictEqual(err.path, doesNotExist);
215 `ENOENT: no such file or directory, access '${doesNotExist}'`
225 () => { fs.accessSync(Buffer.from(doesNotExist)); },
228 assert.strictEqual(err.path, doesNotExist);
231 `ENOENT: no such file or directory, access '${doesNotExist}'`
Dtest-child-process-spawnsync-shell.js10 const doesNotExist = cp.spawnSync('does-not-exist', { shell: true }); constant
12 assert.notStrictEqual(doesNotExist.file, 'does-not-exist');
13 assert.strictEqual(doesNotExist.error, undefined);
14 assert.strictEqual(doesNotExist.signal, null);
17 assert.strictEqual(doesNotExist.status, 1); // Exit code of cmd.exe
19 assert.strictEqual(doesNotExist.status, 127); // Exit code of /bin/sh
Dtest-child-process-spawn-shell.js7 const doesNotExist = cp.spawn('does-not-exist', { shell: true }); constant
9 assert.notStrictEqual(doesNotExist.spawnfile, 'does-not-exist');
10 doesNotExist.on('error', common.mustNotCall());
11 doesNotExist.on('exit', common.mustCall((code, signal) => {
/third_party/typescript/tests/baselines/reference/
DtypeFromPropertyAssignment26.errors.txt1 tests/cases/conformance/salsa/bug24730.js(11,14): error TS2339: Property 'doesNotExist' does not ex…
16 this.doesNotExist
18 !!! error TS2339: Property 'doesNotExist' does not exist on type 'C'.
DtypeFromPropertyAssignment26.types41 this.doesNotExist
42 >this.doesNotExist : any
44 >doesNotExist : any
DtypeFromPropertyAssignment26.symbols34 this.doesNotExist
/third_party/node/test/fixtures/policy/
Dbad-main.mjs1 import {doesNotExist} from './dep.js';
/third_party/typescript/tests/cases/conformance/salsa/
DtypeFromPropertyAssignment26.ts16 this.doesNotExist
/third_party/node/doc/api/
Derrors.md389 doesNotExist;
390 // Throws ReferenceError, doesNotExist is not a variable in this program.