/third_party/typescript/tests/baselines/reference/ |
D | destructuringParameterDeclaration8.types | 5 >test : ({ method, nested: { p } }: { method?: 'x' | 'y'; nested?: { p: 'a' | 'b'; … 11 nested: { p = 'c' } 12 >nested : any 20 nested?: { p: 'a' | 'b' } 21 >nested : { p: 'a' | 'b'; } 35 >test : ({ method, nested: { p } }: { method?: "x" | "y"; nested?: { p: "a" | "b"; }; }) => void 38 test({ method: 'x', nested: { p: 'a' } }) 39 >test({ method: 'x', nested: { p: 'a' } }) : void 40 >test : ({ method, nested: { p } }: { method?: "x" | "y"; nested?: { p: "a" | "b"; }; }) => void 41 >{ method: 'x', nested: { p: 'a' } } : { method: "x"; nested: { p: "a"; }; } [all …]
|
D | jsdocTemplateConstructorFunction2.types | 26 * @param {T} o.nested 29 …t.prototype.add = function(v, o) { this.u = v || o.nested return this.u} : (v: T, o: { neste… 35 >function(v, o) { this.u = v || o.nested return this.u} : (v: T, o: { nested: T; }) => T 37 >o : { nested: T; } 39 this.u = v || o.nested 40 >this.u = v || o.nested : T 44 >v || o.nested : T 46 >o.nested : T 47 >o : { nested: T; } 48 >nested : T [all …]
|
D | circular4.symbols | 8 export namespace nested { 9 >nested : Symbol(nested, Decl(a.ts, 1, 22)) 11 export type T = ns2.nested.T; 14 >nested : Symbol(ns2.nested, Decl(b.ts, 1, 22)) 15 >T : Symbol(ns2.nested.T, Decl(b.ts, 2, 27)) 26 export namespace nested { 27 >nested : Symbol(nested, Decl(b.ts, 1, 22)) 29 export type T = ns1.nested.T; 32 >nested : Symbol(ns1.nested, Decl(a.ts, 1, 22)) 33 >T : Symbol(ns1.nested.T, Decl(a.ts, 2, 27))
|
D | destructuringParameterDeclaration8.symbols | 10 nested: { p = 'c' } 11 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 6, 23)) 18 nested?: { p: 'a' | 'b' } 19 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 6, 23)) 34 test({ method: 'x', nested: { p: 'a' } }) 37 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 15, 19)) 40 test({ method: 'z', nested: { p: 'b' } }) 43 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 16, 19)) 46 test({ method: 'one', nested: { p: 'a' } }) 49 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 17, 21))
|
D | destructuringTypeGuardFlow.types | 3 >foo : { bar: number | null; baz: string; nested: { a: number; b: string | null;}; } 12 nested: { 13 >nested : { a: number; b: string | null; } 24 const aFoo: foo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } }; 26 >{ bar: 3, baz: "b", nested: { a: 1, b: "y" } } : { bar: number; baz: string; nested: { a: number; … 31 >nested : { a: number; b: string; } 38 if (aFoo.bar && aFoo.nested.b) { 39 >aFoo.bar && aFoo.nested.b : string | 0 | null 43 >aFoo.nested.b : string | null 44 >aFoo.nested : { a: number; b: string | null; } [all …]
|
D | destructuringTypeGuardFlow.symbols | 11 nested: { 12 >nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 2, 14)) 22 const aFoo: foo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } }; 27 >nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 9, 37)) 31 if (aFoo.bar && aFoo.nested.b) { 35 >aFoo.nested.b : Symbol(b, Decl(destructuringTypeGuardFlow.ts, 4, 14)) 36 >aFoo.nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 2, 14)) 38 >nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 2, 14)) 41 const { bar, baz, nested: {a, b: text} } = aFoo; 44 >nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 2, 14)) [all …]
|
D | commonJSReexport.types | 2 const { hardline } = require('./second').nested; 4 >require('./second').nested : typeof import("tests/cases/conformance/salsa/first") 5 >require('./second') : { nested: typeof import("tests/cases/conformance/salsa/first"); } 8 >nested : typeof import("tests/cases/conformance/salsa/first") 36 >module.exports = { nested: require('./first')} : { nested: typeof import("tests/cases/conformance… 37 >module.exports : { nested: typeof import("tests/cases/conformance/salsa/first"); } 38 >module : { exports: { nested: typeof import("tests/cases/conformance/salsa/first"); }; } 39 >exports : { nested: typeof import("tests/cases/conformance/salsa/first"); } 40 >{ nested: require('./first')} : { nested: typeof import("tests/cases/conformance/salsa/first"); } 42 nested: require('./first') [all …]
|
D | errorSuperCalls.errors.txt | 2 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 3 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 4 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 5 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 6 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 7 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 8 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 9 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 11 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 12 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… [all …]
|
D | destructuringParameterDeclaration8.js | 6 nested: { p = 'c' } property 9 nested?: { p: 'a' | 'b' } 17 test({ method: 'x', nested: { p: 'a' } }) property 18 test({ method: 'z', nested: { p: 'b' } }) property 19 test({ method: 'one', nested: { p: 'a' } }) property 26 …var _b = _a.method, method = _b === void 0 ? 'z' : _b, _c = _a.nested.p, p = _c === void 0 ? 'c' :… 31 test({ method: 'x', nested: { p: 'a' } }); property 32 test({ method: 'z', nested: { p: 'b' } }); property 33 test({ method: 'one', nested: { p: 'a' } }); property
|
D | destructuringTypeGuardFlow.js | 5 nested: { 11 const aFoo: foo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } }; property 13 if (aFoo.bar && aFoo.nested.b) { 14 const { bar, baz, nested: {a, b: text} } = aFoo; 29 if (bBar.elem2 && bBar.elem2.bar && bBar.elem2.nested.b) { 30 const { bar, baz, nested: {a, b: text} } = bBar.elem2; 40 var aFoo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } }; property 41 if (aFoo.bar && aFoo.nested.b) { 42 var bar = aFoo.bar, baz = aFoo.baz, _a = aFoo.nested, a = _a.a, text = _a.b; 50 if (bBar.elem2 && bBar.elem2.bar && bBar.elem2.nested.b) { [all …]
|
D | importedAliasesInTypePositions.js | 4 export module elaborate.nested.mod.name { 13 import ReferredTo = RT_ALIAS.elaborate.nested.mod.name.ReferredTo; 28 var nested; 29 (function (nested) { argument 43 })(mod = nested.mod || (nested.mod = {})); 44 })(nested = elaborate.nested || (elaborate.nested = {}));
|
D | filterNamespace_import.js | 8 export namespace nested { 23 let n: ns.nested.NestedClass = { a: '' }; 38 var nested; 39 (function (nested) { argument 45 nested.NestedClass = NestedClass; 46 })(nested = ns.nested || (ns.nested = {}));
|
D | importedAliasesInTypePositions.types | 5 import ReferredTo = RT_ALIAS.elaborate.nested.mod.name.ReferredTo; 9 >nested : typeof RT_ALIAS.elaborate.nested 10 >mod : typeof RT_ALIAS.elaborate.nested.mod 11 >name : typeof RT_ALIAS.elaborate.nested.mod.name 25 export module elaborate.nested.mod.name { 27 >nested : typeof nested
|
D | intersectionTypeMembers.types | 101 nested: { doublyNested: { d: string; }, different: { e: number } }; 102 >nested : { doublyNested: { d: string;}; different: { e: number;}; } 109 nested: { doublyNested: { f: string; }, other: {g: number } }; 110 >nested : { doublyNested: { f: string;}; other: { g: number;}; } 118 …nested: { doublyNested: { d: 'yes', f: 'no' }, differen… 120 nested: { 121 >nested : { doublyNested: { d: string; f: string; }; different: { e: number; }; other: { g: number;… 151 // Additional test case with >2 doubly nested members so fix for #31441 is tested w/ excess props 153 nested: { doublyNested: { g: string; } } 154 >nested : { doublyNested: { g: string;}; } [all …]
|
D | findAllReferencesJsDocTypeLiteral.baseline.jsonc | 6 // * @param {Object} o.nested - very nested 7 // * @param {boolean} o.nested./*FIND ALL REFS*/[|great|] - much greatness 8 // * @param {number} o.nested.times - twice? probably!?? 10 // function f(o) { return o.nested.[|great|]; } 91 // * @param {Object} o.nested - very nested 92 // * @param {boolean} o.nested.[|great|] - much greatness 93 // * @param {number} o.nested.times - twice? probably!?? 95 // function f(o) { return o.nested./*FIND ALL REFS*/[|great|]; }
|
D | typedefTagNested.symbols | 45 * @property {string} nested 49 var sala = { name: 'uppsala', not: 0, nested: "ok" }; 53 >nested : Symbol(nested, Decl(a.js, 35, 37)) 65 sala.nested 66 >sala.nested : Symbol(nested, Decl(a.js, 31, 3)) 68 >nested : Symbol(nested, Decl(a.js, 31, 3))
|
D | commonJSReexport.symbols | 2 const { hardline } = require('./second').nested; 4 >require('./second').nested : Symbol(nested, Decl(second.js, 0, 18)) 7 >nested : Symbol(nested, Decl(second.js, 0, 18)) 35 nested: require('./first') 36 >nested : Symbol(nested, Decl(second.js, 0, 18))
|
D | intersectionTypeMembers.js | 31 nested: { doublyNested: { d: string; }, different: { e: number } }; 34 nested: { doublyNested: { f: string; }, other: {g: number } }; 37 nested: { property 49 nested: { doublyNested: { g: string; } } 53 nested: { doublyNested: { h: string; } } 57 nested: { property 85 nested: { property 95 nested: { property
|
D | importedAliasesInTypePositions.symbols | 5 import ReferredTo = RT_ALIAS.elaborate.nested.mod.name.ReferredTo; 9 >nested : Symbol(RT_ALIAS.elaborate.nested, Decl(file1.ts, 0, 24)) 10 >mod : Symbol(RT_ALIAS.elaborate.nested.mod, Decl(file1.ts, 0, 31)) 11 >name : Symbol(RT_ALIAS.elaborate.nested.mod.name, Decl(file1.ts, 0, 35)) 26 export module elaborate.nested.mod.name { 28 >nested : Symbol(nested, Decl(file1.ts, 0, 24))
|
D | illegalSuperCallsInConstructor.errors.txt | 2 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 3 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 4 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 6 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 8 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c… 22 !!! error TS2337: Super calls are not permitted outside constructors or in nested functions inside … 26 !!! error TS2337: Super calls are not permitted outside constructors or in nested functions inside … 30 !!! error TS2337: Super calls are not permitted outside constructors or in nested functions inside … 40 !!! error TS2337: Super calls are not permitted outside constructors or in nested functions inside … 52 !!! error TS2337: Super calls are not permitted outside constructors or in nested functions inside …
|
/third_party/libuv/test/ |
D | test-callback-stack.c | 39 static int nested = 0; variable 56 ASSERT(nested == 0 && "close_cb must be called from a fresh stack"); in close_cb() 64 ASSERT(nested == 0 && "shutdown_cb must be called from a fresh stack"); in shutdown_cb() 71 ASSERT(nested == 0 && "read_cb must be called from a fresh stack"); in read_cb() 82 nested++; in read_cb() 84 nested--; in read_cb() 95 nested++; in read_cb() 102 nested--; in read_cb() 109 ASSERT(nested == 0 && "timer_cb must be called from a fresh stack"); in timer_cb() 113 nested++; in timer_cb() [all …]
|
/third_party/json/docs/mkdocs/docs/features/ |
D | json_pointer.md | 13 "nested": { 25 | `` | `#!json {"array":["A","B","C"],"nested":{"one":1,"two":2,"three":[true,false]… 30 | `/nested` | `#!json {"one":1,"two":2,"three":[true,false]}` … 31 | `/nested/one` | `#!json 1` … 32 | `/nested/two` | `#!json 2` … 33 | `/nested/three` | `#!json [true,false]` … 34 | `/nested/three/0` | `#!json true` … 35 | `/nested/three/1` | `#!json false` … 45 json::json_pointer p = "/nested/one"; 51 auto p = "/nested/one"_json_pointer; [all …]
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_move_unittest.cc | 54 const auto* nested = &message1.optional_nested_message(); in TEST() local 61 EXPECT_EQ(nested, &message2.optional_nested_message()); in TEST() 62 EXPECT_NE(nested, &message1.optional_nested_message()); in TEST() 68 const auto* nested = &message1.optional_nested_message(); in TEST() local 76 EXPECT_EQ(nested, &message2.optional_nested_message()); in TEST() 77 EXPECT_NE(nested, &message1.optional_nested_message()); in TEST() 94 const auto* nested = &message1_on_arena->optional_nested_message(); in TEST() local 101 EXPECT_EQ(nested, &message2_on_arena->optional_nested_message()); in TEST() 110 const auto* nested = &message1_on_arena->optional_nested_message(); in TEST() local 117 EXPECT_NE(nested, &message2_on_arena->optional_nested_message()); in TEST() [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
D | DescriptorDeclarationTest.cs | 108 var nested = outer.FindDescriptor<MessageDescriptor>("NestedCommentMessage"); in NestedMessageComments() 109 Assert.NotNull(nested.Declaration); in NestedMessageComments() 110 … Assert.AreEqual(" Leading nested message comment\n", nested.Declaration.LeadingComments); in NestedMessageComments() 117 var nested = outer.FindDescriptor<EnumDescriptor>("NestedCommentEnum"); in NestedEnumComments() 118 Assert.NotNull(nested.Declaration); in NestedEnumComments() 119 Assert.AreEqual(" Leading nested enum comment\n", nested.Declaration.LeadingComments); in NestedEnumComments() 136 var nested = outer.FindDescriptor<MessageDescriptor>("NestedCommentMessage"); in NestedMessageFieldComments() 137 var field = nested.FindFieldByName("nested_text"); in NestedMessageFieldComments() 155 var nested = outer.FindDescriptor<EnumDescriptor>("NestedCommentEnum"); in NestedEnumValueComments() 156 var value = nested.FindValueByName("ZERO_VALUE"); in NestedEnumValueComments()
|
/third_party/node/test/fixtures/test-runner/output/ |
D | describe_nested.snapshot | 2 # Subtest: nested - no tests 3 # Subtest: nested 4 # Subtest: nested 5 ok 1 - nested 10 ok 1 - nested 16 ok 1 - nested - no tests
|