Home
last modified time | relevance | path

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

/third_party/node/test/parallel/
Dtest-fs-access.js22 const doesNotExist = path.join(tmpdir.path, '__this_should_not_exist'); constant
97 assert.strictEqual(err.path, doesNotExist);
99 fs.access(doesNotExist, common.mustCall(expectedError));
100 fs.promises.access(doesNotExist)
206 () => { fs.accessSync(doesNotExist); },
209 assert.strictEqual(err.path, doesNotExist);
212 `ENOENT: no such file or directory, access '${doesNotExist}'`
222 () => { fs.accessSync(Buffer.from(doesNotExist)); },
225 assert.strictEqual(err.path, doesNotExist);
228 `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) => {
Dtest-vfs.js13 const doesNotExist = join(tmpdir.path, 'does-not-exist'); constant
21 ok(Module._stat(doesNotExist) < 0);
79 ok(Module._stat(doesNotExist) < 0);
Dtest-module-stat.js13 const doesNotExist = join(tmpdir.path, 'does-not-exist'); constant
22 ok(Module._stat(doesNotExist) < 0); // Returns a negative integer for any other kind of strings.
/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'.
DomittedExpressionForOfLoop.errors.txt1 …/cases/compiler/omittedExpressionForOfLoop.ts(1,19): error TS2304: Cannot find name 'doesNotExist'.
8 for (const [,] of doesNotExist) {
10 !!! error TS2304: Cannot find name 'doesNotExist'.
DtypeFromPropertyAssignment26.types41 this.doesNotExist
42 >this.doesNotExist : any
44 >doesNotExist : any
DomittedExpressionForOfLoop.js2 for (const [,] of doesNotExist) {
16 for (const [,] of doesNotExist) {
DomittedExpressionForOfLoop.types2 for (const [,] of doesNotExist) {
4 >doesNotExist : any
DomittedExpressionForOfLoop.symbols2 for (const [,] of doesNotExist) {
DfindAllRefsBadImport.baseline.jsonc4 // import { ab as /*FIND ALL REFS*/[|cd|] } from "doesNotExist";
DtypeFromPropertyAssignment26.symbols34 this.doesNotExist
/third_party/typescript/tests/cases/compiler/
DomittedExpressionForOfLoop.ts4 for (const [,] of 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.md419 doesNotExist;
420 // Throws ReferenceError, doesNotExist is not a variable in this program.