Searched refs:doesNotExist (Results 1 – 17 of 17) sorted by relevance
/third_party/node/test/parallel/ |
D | test-fs-access.js | 22 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}'`
|
D | test-child-process-spawnsync-shell.js | 10 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
|
D | test-child-process-spawn-shell.js | 7 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) => {
|
D | test-vfs.js | 13 const doesNotExist = join(tmpdir.path, 'does-not-exist'); constant 21 ok(Module._stat(doesNotExist) < 0); 79 ok(Module._stat(doesNotExist) < 0);
|
D | test-module-stat.js | 13 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/ |
D | typeFromPropertyAssignment26.errors.txt | 1 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'.
|
D | omittedExpressionForOfLoop.errors.txt | 1 …/cases/compiler/omittedExpressionForOfLoop.ts(1,19): error TS2304: Cannot find name 'doesNotExist'. 8 for (const [,] of doesNotExist) { 10 !!! error TS2304: Cannot find name 'doesNotExist'.
|
D | typeFromPropertyAssignment26.types | 41 this.doesNotExist 42 >this.doesNotExist : any 44 >doesNotExist : any
|
D | omittedExpressionForOfLoop.js | 2 for (const [,] of doesNotExist) { 16 for (const [,] of doesNotExist) {
|
D | omittedExpressionForOfLoop.types | 2 for (const [,] of doesNotExist) { 4 >doesNotExist : any
|
D | omittedExpressionForOfLoop.symbols | 2 for (const [,] of doesNotExist) {
|
D | findAllRefsBadImport.baseline.jsonc | 4 // import { ab as /*FIND ALL REFS*/[|cd|] } from "doesNotExist";
|
D | typeFromPropertyAssignment26.symbols | 34 this.doesNotExist
|
/third_party/typescript/tests/cases/compiler/ |
D | omittedExpressionForOfLoop.ts | 4 for (const [,] of doesNotExist) {
|
/third_party/node/test/fixtures/policy/ |
D | bad-main.mjs | 1 import {doesNotExist} from './dep.js';
|
/third_party/typescript/tests/cases/conformance/salsa/ |
D | typeFromPropertyAssignment26.ts | 16 this.doesNotExist
|
/third_party/node/doc/api/ |
D | errors.md | 419 doesNotExist; 420 // Throws ReferenceError, doesNotExist is not a variable in this program.
|