/third_party/typescript/tests/baselines/reference/ |
D | generatorAssignability.errors.txt | 1 …r TS2764: Cannot iterate value because the 'next' method of its iterator expects type 'string', bu… 2 …r TS2765: Cannot iterate value because the 'next' method of its iterator expects type 'string', bu… 3 …r TS2765: Cannot iterate value because the 'next' method of its iterator expects type 'string', bu… 4 …r TS2765: Cannot iterate value because the 'next' method of its iterator expects type 'string', bu… 5 …r TS2765: Cannot iterate value because the 'next' method of its iterator expects type 'string', bu… 6 …r TS2763: Cannot iterate value because the 'next' method of its iterator expects type 'string', bu… 7 …r TS2763: Cannot iterate value because the 'next' method of its iterator expects type 'string', bu… 8 …r TS2763: Cannot iterate value because the 'next' method of its iterator expects type 'string', bu… 9 …ot delegate iteration to value because the 'next' method of its iterator expects type 'string', bu… 10 …ot delegate iteration to value because the 'next' method of its iterator expects type 'string', bu… [all …]
|
D | functionParameterArityMismatch.errors.txt | 2 tests/cases/compiler/functionParameterArityMismatch.ts(4,1): error TS2575: No overload expects 2 ar… 4 tests/cases/compiler/functionParameterArityMismatch.ts(11,1): error TS2575: No overload expects 1 a… 5 tests/cases/compiler/functionParameterArityMismatch.ts(12,1): error TS2575: No overload expects 3 a… 6 tests/cases/compiler/functionParameterArityMismatch.ts(13,1): error TS2575: No overload expects 5 a… 19 !!! error TS2575: No overload expects 2 arguments, but overloads do exist that expect either 1 or 3… 30 !!! error TS2575: No overload expects 1 arguments, but overloads do exist that expect either 0 or 2… 33 !!! error TS2575: No overload expects 3 arguments, but overloads do exist that expect either 2 or 4… 36 !!! error TS2575: No overload expects 5 arguments, but overloads do exist that expect either 4 or 6…
|
D | checkJsxChildrenProperty2.errors.txt | 3 tests/cases/conformance/jsx/file.tsx(31,6): error TS2746: This JSX tag's 'children' prop expects a … 4 tests/cases/conformance/jsx/file.tsx(37,6): error TS2746: This JSX tag's 'children' prop expects a … 5 tests/cases/conformance/jsx/file.tsx(43,6): error TS2746: This JSX tag's 'children' prop expects a … 6 tests/cases/conformance/jsx/file.tsx(49,6): error TS2746: This JSX tag's 'children' prop expects a … 47 !!! error TS2746: This JSX tag's 'children' prop expects a single child of type 'string | Element',… 55 !!! error TS2746: This JSX tag's 'children' prop expects a single child of type 'string | Element',… 63 !!! error TS2746: This JSX tag's 'children' prop expects a single child of type 'string | Element',… 71 !!! error TS2746: This JSX tag's 'children' prop expects a single child of type 'string | Element',…
|
D | jsxIssuesErrorWhenTagExpectsTooManyArguments.errors.txt | 1 …orWhenTagExpectsTooManyArguments.tsx(19,12): error TS6229: Tag 'MyComp4' expects at least '4' argu… 2 …orWhenTagExpectsTooManyArguments.tsx(20,12): error TS6229: Tag 'MyComp3' expects at least '3' argu… 24 …const a = <MyComp4 x={2}/>; // using `MyComp` as a component should error - it expects more argume… 26 !!! error TS6229: Tag 'MyComp4' expects at least '4' arguments, but the JSX factory 'React.createEl… 28 …const b = <MyComp3 x={2}/>; // using `MyComp` as a component should error - it expects more argume… 30 !!! error TS6229: Tag 'MyComp3' expects at least '3' arguments, but the JSX factory 'React.createEl…
|
D | callSignaturesShouldBeResolvedBeforeSpecialization.types | 16 …test("expects boolean instead of string"); // should not error - "test" should not expect a boolean 17 >test("expects boolean instead of string") : void 19 >"expects boolean instead of string" : "expects boolean instead of string"
|
D | functionTypeArgumentArityErrors.errors.txt | 1 tests/cases/compiler/functionTypeArgumentArityErrors.ts(4,4): error TS2743: No overload expects 2 t… 3 tests/cases/compiler/functionTypeArgumentArityErrors.ts(10,4): error TS2743: No overload expects 2 … 18 !!! error TS2743: No overload expects 2 type arguments, but overloads do exist that expect either 1… 28 !!! error TS2743: No overload expects 2 type arguments, but overloads do exist that expect either 1…
|
D | jsxChildrenIndividualErrorElaborations.errors.txt | 3 tests/cases/compiler/index.tsx(23,10): error TS2746: This JSX tag's 'children' prop expects a singl… 4 tests/cases/compiler/index.tsx(37,10): error TS2745: This JSX tag's 'children' prop expects type '(… 6 tests/cases/compiler/index.tsx(42,10): error TS2745: This JSX tag's 'children' prop expects type '(… 50 !!! error TS2746: This JSX tag's 'children' prop expects a single child of type '(x: number) => str… 66 !!! error TS2745: This JSX tag's 'children' prop expects type '((x: number) => string)[]' which req… 75 !!! error TS2745: This JSX tag's 'children' prop expects type '((x: number) => string)[]' which req…
|
D | newMap.errors.txt | 1 tests/cases/compiler/newMap.ts(1,9): error TS2743: No overload expects 1 type arguments, but overlo… 7 !!! error TS2743: No overload expects 1 type arguments, but overloads do exist that expect either 0…
|
D | checkJsxChildrenProperty14.errors.txt | 1 tests/cases/conformance/jsx/file.tsx(42,11): error TS2746: This JSX tag's 'children' prop expects a… 48 !!! error TS2746: This JSX tag's 'children' prop expects a single child of type 'Element', but mult…
|
D | callWithMissingVoid.errors.txt | 23 x.f() // no error because f expects void 30 xAny.f() // error, any still expects an argument 36 xUnknown.f() // error, unknown still expects an argument 42 xNever.f() // error, never still expects an argument
|
D | jsxIssuesErrorWhenTagExpectsTooManyArguments.types | 46 const a = <MyComp4 x={2}/>; // using `MyComp` as a component should error - it expects more argumen… 53 const b = <MyComp3 x={2}/>; // using `MyComp` as a component should error - it expects more argumen…
|
D | callWithMissingVoid.symbols | 22 x.f() // no error because f expects void 45 xAny.f() // error, any still expects an argument 54 xUnknown.f() // error, unknown still expects an argument 63 xNever.f() // error, never still expects an argument
|
D | callWithMissingVoid.types | 20 x.f() // no error because f expects void 45 xAny.f() // error, any still expects an argument 54 xUnknown.f() // error, unknown still expects an argument 63 xNever.f() // error, never still expects an argument
|
D | jsxIssuesErrorWhenTagExpectsTooManyArguments.symbols | 48 const a = <MyComp4 x={2}/>; // using `MyComp` as a component should error - it expects more argumen… 53 const b = <MyComp3 x={2}/>; // using `MyComp` as a component should error - it expects more argumen…
|
D | callSignaturesShouldBeResolvedBeforeSpecialization.errors.txt | 12 …test("expects boolean instead of string"); // should not error - "test" should not expect a boolean
|
/third_party/node/test/cctest/ |
D | test_inspector_socket_server.cc | 144 void Expect(const std::string& expects) { in Expect() argument 145 SPIN_WHILE(contents_.size() < expects.length()); in Expect() 146 ASSERT_STREQ(expects.c_str(), in Expect() 147 std::string(contents_.data(), expects.length()).c_str()); in Expect() 148 contents_.erase(contents_.begin(), contents_.begin() + expects.length()); in Expect() 285 void Expect(const std::string& expects) { in Expect() argument 286 SPIN_WHILE(buffer_.size() < expects.length()); in Expect() 287 ASSERT_STREQ(std::string(buffer_.data(), expects.length()).c_str(), in Expect() 288 expects.c_str()); in Expect() 289 buffer_.erase(buffer_.begin(), buffer_.begin() + expects.length()); in Expect()
|
/third_party/node/test/sequential/ |
D | test-inspector-contexts.js | 36 let expects = `${process.argv0}[${process.pid}]`; 38 expects = `Worker[${require('worker_threads').threadId}]`; 40 assert.strictEqual(expects, name);
|
/third_party/typescript/tests/cases/compiler/ |
D | jsxIssuesErrorWhenTagExpectsTooManyArguments.tsx | 20 const a = <MyComp4 x={2}/>; // using `MyComp` as a component should error - it expects more argumen… 21 const b = <MyComp3 x={2}/>; // using `MyComp` as a component should error - it expects more argumen…
|
/third_party/mesa3d/src/amd/compiler/tests/ |
D | README.md | 15 - A sequence of spaces in the pattern expects a sequence of spaces or tabs in the output. 16 - A `#` in the pattern expects an unsigned integer in the output. The `#` can be followed by an ide… 18 - A `%` in the pattern followed by an identifier is the same as a `#` but it expects a `%` before t…
|
/third_party/jerryscript/docs/ |
D | 09.EXT-REFERENCE-ARG.md | 382 (`jerryx_arg_t`) that expects to consume one `number` JS argument 414 Create a validation/transformation step (`jerryx_arg_t`) that expects to consume 439 Create a validation/transformation step (`jerryx_arg_t`) that expects to 464 Create a validation/transformation step (`jerryx_arg_t`) that expects to 493 Create a validation/transformation step (`jerryx_arg_t`) that expects to 522 Create a validation/transformation step (`jerryx_arg_t`) that expects to 545 Create a validation/transformation step (`jerryx_arg_t`) that expects to 571 Create a validation/transformation step (`jerryx_arg_t`) that expects to 596 * The binding function expects args_p[0] is an object, which has 3 properties: 668 Create a validation/transformation step (`jerryx_arg_t`) that expects to [all …]
|
/third_party/node/test/parallel/ |
D | test-inspector-bindings.js | 62 const expects = { variable 71 expected = expects[v.name][i];
|
/third_party/ltp/pan/cgi/ |
D | README | 6 A directory that contains all output. It expects file names in the format 40 side by side in a table. It expects to find .scanner files for the
|
/third_party/node/test/fixtures/es-modules/ |
D | loop.mjs | 14 // test/parallel/test-inspector-esm.js expects t and k to be context-allocated.
|
/third_party/libabigail/tests/data/test-abicompat/ |
D | test7-fn-changed-report-1.txt | 2 have sub-types that are different from what application 'test7-fn-changed-app' expects:
|
D | test9-fn-changed-report-0.txt | 2 have sub-types that are different from what application 'test9-fn-changed-app' expects:
|