Home
last modified time | relevance | path

Searched refs:nested (Results 1 – 25 of 920) sorted by relevance

12345678910>>...37

/third_party/typescript/tests/baselines/reference/
DdestructuringParameterDeclaration8.types5 >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 …]
DjsdocTemplateConstructorFunction2.types26 * @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 …]
Dcircular4.symbols8 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))
DdestructuringParameterDeclaration8.symbols10 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))
DdestructuringTypeGuardFlow.types3 >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 …]
DdestructuringTypeGuardFlow.symbols11 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 …]
DcommonJSReexport.types2 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 …]
DerrorSuperCalls.errors.txt2 …: 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 …]
DdestructuringParameterDeclaration8.js6 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
DdestructuringTypeGuardFlow.js5 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 …]
DimportedAliasesInTypePositions.js4 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 = {}));
DfilterNamespace_import.js8 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 = {}));
DimportedAliasesInTypePositions.types5 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
DintersectionTypeMembers.types101 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;}; }
118nested: { 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 …]
DfindAllReferencesJsDocTypeLiteral.baseline.jsonc6 // * @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|]; }
DtypedefTagNested.symbols45 * @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))
DcommonJSReexport.symbols2 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))
DintersectionTypeMembers.js31 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
DimportedAliasesInTypePositions.symbols5 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))
DillegalSuperCallsInConstructor.errors.txt2 …: 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/
Dtest-callback-stack.c39 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/
Djson_pointer.md13 "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/
Dcpp_move_unittest.cc54 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/
DDescriptorDeclarationTest.cs108 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/
Ddescribe_nested.snapshot2 # Subtest: nested - no tests
3 # Subtest: nested
4 # Subtest: nested
5 ok 1 - nested
10 ok 1 - nested
16 ok 1 - nested - no tests

12345678910>>...37