Home
last modified time | relevance | path

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

12

/arkcompiler/ets_frontend/test262/
DdynamicImport_tests.txt3 nested-arrow-assignment-expression-not-extensible-args.js
4 nested-block-no-new-call-expression.js
6 nested-async-gen-await-no-new-call-expression.js
7 nested-else-braceless-not-extensible-no-trailing-comma.js
8 nested-function-return-assignment-expr-not-optional.js
9 nested-else-braceless-assignment-expr-not-optional.js
10 nested-if-no-rest-param.js
11 nested-function-not-extensible-args.js
12 nested-with-expression-no-new-call-expression.js
13 nested-if-braceless-no-rest-param.js
[all …]
Des2021_tests.txt516 language/expressions/dynamic-import/namespace/get-nested-namespace-props-nrml-1_FIXTURE.js
517 language/expressions/dynamic-import/namespace/get-nested-namespace-dflt-skip-prod_FIXTURE.js
518 language/expressions/dynamic-import/namespace/get-nested-namespace-dflt-skip-prod-end_FIXTURE.js
519 language/expressions/dynamic-import/namespace/get-nested-namespace-dflt-skip-named-end_FIXTURE.js
521 language/expressions/dynamic-import/namespace/get-nested-namespace-props-nrml-2_FIXTURE.js
522 language/expressions/dynamic-import/namespace/get-nested-namespace-dflt-skip-named_FIXTURE.js
523 language/expressions/dynamic-import/namespace/get-nested-namespace-props-nrml-3_FIXTURE.js
562 language/expressions/dynamic-import/usage/nested-do-while-returns-thenable.js
563 language/expressions/dynamic-import/usage/syntax-nested-block-labeled-is-call-expression-square-bra…
564 language/expressions/dynamic-import/usage/syntax-nested-block-labeled-returns-thenable.js
[all …]
Dmodule_tests.txt395 get-nested-namespace-dflt-skip.js
396 get-nested-namespace-dflt-skip-named-end_FIXTURE.js
397 get-nested-namespace-dflt-skip-named_FIXTURE.js
398 get-nested-namespace-dflt-skip-prod-end_FIXTURE.js
399 get-nested-namespace-dflt-skip-prod_FIXTURE.js
400 get-nested-namespace-props-nrml-1_FIXTURE.js
401 get-nested-namespace-props-nrml-2_FIXTURE.js
402 get-nested-namespace-props-nrml-3_FIXTURE.js
403 get-nested-namespace-props-nrml.js
Des2015_tests.txt788 built-ins/Array/prototype/flatMap/array-like-objects-nested.js
6543 language/module-code/namespace/internals/get-nested-namespace-dflt-skip.js
6544 language/module-code/namespace/internals/get-nested-namespace-dflt-skip-named_FIXTURE.js
6545 language/module-code/namespace/internals/get-nested-namespace-dflt-skip-named-end_FIXTURE.js
6546 language/module-code/namespace/internals/get-nested-namespace-dflt-skip-prod_FIXTURE.js
6547 language/module-code/namespace/internals/get-nested-namespace-dflt-skip-prod-end_FIXTURE.js
6548 language/module-code/namespace/internals/get-nested-namespace-props-nrml.js
6549 language/module-code/namespace/internals/get-nested-namespace-props-nrml-1_FIXTURE.js
6550 language/module-code/namespace/internals/get-nested-namespace-props-nrml-2_FIXTURE.js
6551 language/module-code/namespace/internals/get-nested-namespace-props-nrml-3_FIXTURE.js
[all …]
DCI_tests.txt2546 built-ins/GeneratorPrototype/return/try-finally-nested-try-catch-within-catch.js
2635 language/statements/for-of/nested.js
2686 language/statements/with/strict-fn-decl-nested-2.js
3346 language/expressions/object/method-definition/yield-as-identifier-in-nested-function.js
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DdestructuringTypeGuardFlow.ts24 nested: {
30 const aFoo: foo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } };
32 AssertType({ bar: 3, baz: "b", nested: { a: 1, b: "y" } }, "{ bar: number; baz: string; nested: { a…
37 AssertType(nested, "{ a: number; b: string; }");
44 if (aFoo.bar && aFoo.nested.b) {
45 const { bar, baz, nested: {a, b: text} } = aFoo; constant
48 AssertType(nested, "any");
88 if (bBar.elem2 && bBar.elem2.bar && bBar.elem2.nested.b) {
89 const { bar, baz, nested: {a, b: text} } = bBar.elem2; constant
92 AssertType(nested, "any");
DobjectRestParameter.ts34 suddenly(({ x: { z = 12, ...nested }, ...rest } = { x: { z: 1, ka: 1 }, y: 'noo' }) => rest.y + nes…
35 AssertType(suddenly(({ x: { z = 12, ...nested }, ...rest } = { x: { z: 1, ka: 1 }, y: 'noo' }) => r…
37 AssertType(({ x: { z = 12, ...nested }, ...rest } = { x: { z: 1, ka: 1 }, y: 'noo' }) => rest.y + n…
41 AssertType(nested, "{ ka: any; }");
52 AssertType(rest.y + nested.ka, "string");
54 AssertType(nested.ka, "any");
DobjectRestParameterES5.ts34 suddenly(({ x: { z = 12, ...nested }, ...rest } = { x: { z: 1, ka: 1 }, y: 'noo' }) => rest.y + nes…
35 AssertType(suddenly(({ x: { z = 12, ...nested }, ...rest } = { x: { z: 1, ka: 1 }, y: 'noo' }) => r…
37 AssertType(({ x: { z = 12, ...nested }, ...rest } = { x: { z: 1, ka: 1 }, y: 'noo' }) => rest.y + n…
41 AssertType(nested, "{ ka: any; }");
52 AssertType(rest.y + nested.ka, "string");
54 AssertType(nested.ka, "any");
DnewOperatorConformance.ts121 let nested = new (new (new nestedCtor())())(); variable
122 AssertType(nested, "nestedCtor");
130 let n = new nested();
132 AssertType(new nested(), "nestedCtor");
133 AssertType(nested, "nestedCtor");
135 let n = new nested();
137 AssertType(new nested(), "nestedCtor");
138 AssertType(nested, "nestedCtor");
DobjectRestAssignment.ts24 let nested: { ki };
25 AssertType(nested, "{ ki: any; }");
41 ({x: { ka, ...nested }, y: other, ...rest} = complex);
42 AssertType(({x: { ka, ...nested }, y: other, ...rest} = complex), "{ x: { ka: any; ki: any; }; y: n…
43 AssertType({x: { ka, ...nested }, y: other, ...rest} = complex, "{ x: { ka: any; ki: any; }; y: num…
44 AssertType({x: { ka, ...nested }, y: other, ...rest}, "{ x: { ki: any; ka: any; }; y: number; }");
46 AssertType({ ka, ...nested }, "{ ki: any; ka: any; }");
48 AssertType(nested, "{ ki: any; }");
DintersectionTypeMembers.ts87 nested: { doublyNested: { d: string; }, different: { e: number } }; property
90 nested: { doublyNested: { f: string; }, other: {g: number } }; property
94 AssertType({ nested: { doublyNested: { d: 'yes', f: 'no' }, …
96 nested: {
97 AssertType(nested, "{ doublyNested: { d: string; f: string; }; different: { e: number; }; other: { …
133 nested: { doublyNested: { g: string; } } property
137 nested: { doublyNested: { h: string; } } property
142 AssertType({ nested: { doublyNested: { d: 'yes', f: 'no', …
144 nested: {
145 AssertType(nested, "{ doublyNested: { d: string; f: string; g: string; h: string; }; different: { e…
DcontextualTypeShouldBeLiteral.ts207 AssertType({ items: { hello: { type: 'string' }, world: { items: { nested: { typ…
211 AssertType({ hello: { type: 'string' }, world: { items: { nested: { type: 'string…
221 AssertType({ items: { nested: { type: 'string' } } }, "{ items: { nested: { typ…
225 AssertType({ nested: { type: 'string' } }, "{ nested: { type: "string"; }; }");
227 nested: { type: 'string'
228 AssertType(nested, "{ type: "string"; }");
DnestedTypeVariableInfersLiteral.ts23 declare function nested<A extends string>(a: { fields: A }): Record<A, string>
40 const nestedSingle = nested({fields: "z"})
42 AssertType(nested({fields: "z"}), "Record<"z", string>");
43 AssertType(nested, "<A extends string>({ fields: A; }) => Record<A, string>");
DcontextuallyTypedBindingInitializer.ts29 nested: Show property
31 function ff({ nested = { show: v => v.toString() } }: Nested) {}
DuniqueSymbolsDeclarations.ts302 nested: {
313 const constInitToLReadonlyNestedType = l.nested.readonlyNestedType;
315 AssertType(l.nested.readonlyNestedType, "unique symbol");
324 const constInitToLReadonlyNestedTypeWithTypeQuery: typeof l.nested.readonlyNestedType = l.nested.re…
326 AssertType(l.nested.readonlyNestedType, "unique symbol");
327 AssertType(l.nested, "{ readonly readonlyNestedType: unique symbol; }");
329 AssertType(nested, "{ readonly readonlyNestedType: unique symbol; }");
331 AssertType(l.nested.readonlyNestedType, "unique symbol");
337 const constInitToLReadonlyNestedTypeWithIndexedAccess: L["nested"]["readonlyNestedType"] = l.nested
339 AssertType(l.nested.readonlyNestedType, "unique symbol");
DuniqueSymbols.ts309 nested: {
320 const constInitToLReadonlyNestedType = l.nested.readonlyNestedType;
322 AssertType(l.nested.readonlyNestedType, "unique symbol");
331 const constInitToLReadonlyNestedTypeWithTypeQuery: typeof l.nested.readonlyNestedType = l.nested.re…
333 AssertType(l.nested.readonlyNestedType, "unique symbol");
334 AssertType(l.nested, "{ readonly readonlyNestedType: unique symbol; }");
336 AssertType(nested, "{ readonly readonlyNestedType: unique symbol; }");
338 AssertType(l.nested.readonlyNestedType, "unique symbol");
344 const constInitToLReadonlyNestedTypeWithIndexedAccess: L["nested"]["readonlyNestedType"] = l.nested
346 AssertType(l.nested.readonlyNestedType, "unique symbol");
DisomorphicMappedTypeInference.ts393 AssertType(applySpec({ sum: (a: any) => 3, nested: { mul: (b: any) => "n" }}), "(..…
395 AssertType({ sum: (a: any) => 3, nested: { mul: (b: any) => "n" }}, "{ sum: (any) =…
403 nested: {
404 AssertType(nested, "{ mul: (any) => string; }");
DobjectSpread.ts105 let nested: { a: number, b: boolean, c: string } = variable
106 AssertType(nested, "{ a: number; b: boolean; c: string; }");
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/importedAliasesInTypePositions/
Dfile1.ts22 export module elaborate.nested.mod.name {
Dfile2.ts23 import ReferredTo = RT_ALIAS.elaborate.nested.mod.name.ReferredTo;
/arkcompiler/ets_frontend/es2panda/test/
Dtest262skiplist.txt1014 language/expressions/await/await-BindingIdentifier-nested.js
1015 language/expressions/await/await-in-nested-function.js
1016 language/expressions/await/await-in-nested-generator.js
2323 language/expressions/class/elements/private-field-on-nested-class.js
2329 language/expressions/class/elements/private-getter-on-nested-class.js
2330 language/expressions/class/elements/private-getter-shadowed-by-field-on-nested-class.js
2331 language/expressions/class/elements/private-getter-shadowed-by-getter-on-nested-class.js
2332 language/expressions/class/elements/private-getter-shadowed-by-method-on-nested-class.js
2333 language/expressions/class/elements/private-getter-shadowed-by-setter-on-nested-class.js
2342 language/expressions/class/elements/private-method-on-nested-class.js
[all …]
/arkcompiler/ets_frontend/testTs/expect/types/contextualTypes/methodDeclarations/
DcontextuallyTypedBindingInitializer.txt6 {'lb': [{'t': 2, 'v': 8}, {'t': 2, 'v': 0}, {'t': 2, 'v': 1}, {'t': 5, 'v': 'nested'}, {'t': 24, 'v…
/arkcompiler/runtime_core/tests/checked/
Dinline.pa542 #! CHECKER Inline nested calls in AOT mode
547 #! CHECKER Inline nested calls in JIT mode
/arkcompiler/runtime_core/docs/
Dassembly_format.md250 Whenever a record should incorporate another record, the name of the nested record must be specifie…
Ddoxygen.config366 # any nested class or struct is added to the same group. By default this option
367 # is disabled and one has to add nested compounds explicitly via \ingroup.

12