Home
last modified time | relevance | path

Searched refs:newC (Results 1 – 8 of 8) sorted by relevance

/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.1/use_returned_values_from_super_call_as_this/
Duse_returned_values_from_super_call_as_this_1.ts40 let newC = new Test_sub(12); variable
41 Assert.equal(newC.one, 1);
42 Assert.notEqual(newC.one, 12);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.1/better_inference_for_literal_types/
Dbetter_inference_for_literal_types_2.ts46 let newC: typeof Test.job = "driver"; variable
47 Assert.isString(newC);
/third_party/typescript/tests/baselines/reference/
DimplicitAnyFunctionInvocationWithAnyArguements.js33 var newC = new C([], undefined); variable
69 var newC = new C([], undefined); variable
DimplicitAnyFunctionInvocationWithAnyArguements.symbols104 var newC = new C([], undefined);
105 >newC : Symbol(newC, Decl(implicitAnyFunctionInvocationWithAnyArguements.ts, 31, 3))
DimplicitAnyFunctionInvocationWithAnyArguements.types127 var newC = new C([], undefined);
128 >newC : C
DimplicitAnyFunctionInvocationWithAnyArguements.errors.txt53 var newC = new C([], undefined);
/third_party/skia/src/gpu/geometry/
DGrPathUtils.cpp354 SkPoint newC; in convert_noninflect_cubic_to_quads() local
361 newC = (c0 + c1) * 0.5f; in convert_noninflect_cubic_to_quads()
363 newC = c0; in convert_noninflect_cubic_to_quads()
365 newC = c1; in convert_noninflect_cubic_to_quads()
370 pts[1] = newC; in convert_noninflect_cubic_to_quads()
/third_party/typescript/tests/cases/compiler/
DimplicitAnyFunctionInvocationWithAnyArguements.ts33 var newC = new C([], undefined); variable