Home
last modified time | relevance | path

Searched refs:func6 (Results 1 – 14 of 14) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DnoImplicitThisBigThis.types34 …> { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any; func7(): a…
37func6() { return this; }, func7() { return this; }, …
40 >func1 : () => { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any…
43 >this : { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any; func7…
47 >func2 : () => { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any…
50 >this : { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any; func7…
54 >func3 : () => { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any…
57 >this : { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any; func7…
61 >func4 : () => { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any…
64 >this : { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any; func7…
[all …]
DnoImplicitThisBigThis.js35 func6() {
83 func6: function () {
111 func6(): any;
DnoImplicitThisBigThis.symbols70 func6() {
71 >func6 : Symbol(func6, Decl(noImplicitThisBigThis.ts, 32, 10))
DmoduleExportAlias.symbols30 b.func6;
31 >b.func6 : Symbol(b.func6, Decl(b.js, 11, 57))
33 >func6 : Symbol(b.func6, Decl(b.js, 11, 57))
158 multipleDeclarationAlias2.func6 = function () { };
159 >multipleDeclarationAlias2.func6 : Symbol(func6, Decl(b.js, 11, 57))
161 >func6 : Symbol(func6, Decl(b.js, 11, 57))
DmoduleExportAlias.types30 b.func6;
31 >b.func6 : () => void
33 >func6 : () => void
170 multipleDeclarationAlias2.func6 = function () { };
171 >multipleDeclarationAlias2.func6 = function () { } : () => void
172 >multipleDeclarationAlias2.func6 : () => void
174 >func6 : () => void
DoptionalParameterInDestructuringWithInitializer.js31 function func6( {a: {b, c} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b: 1,… function
89 function func6(_a) {
DoptionalParameterInDestructuringWithInitializer.symbols105 function func6( {a: {b, c} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b: 1,…
106 >func6 : Symbol(func6, Decl(optionalParameterInDestructuringWithInitializer.ts, 27, 1))
DoptionalParameterInDestructuringWithInitializer.types130 function func6( {a: {b, c} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b: 1,…
131 >func6 : ({ a: { b, c }, d }?: { a: { b: number; c?: number; }; d: number;})…
DoptionalParameterInDestructuringWithInitializer.errors.txt53 …function func6( {a: {b, c} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b: 1…
/third_party/jerryscript/tests/jerry/es2015/
Dfunction-name.js81 var func6; variable
82 (func6) = function () {}
83 assertNameNotExists(func6);
102 func6: class A {},
128 assertMethodName(o.func6, 'A');
159 static set func6(a) {} setter in A
221 static set func6(a) {} setter in B
/third_party/typescript/tests/cases/conformance/salsa/
DmoduleExportAlias.ts11 b.func6;
41 multipleDeclarationAlias2.func6 = function () { };
/third_party/typescript/tests/cases/compiler/
DnoImplicitThisBigThis.ts37 func6() {
DoptionalParameterInDestructuringWithInitializer.ts31 function func6( {a: {b, c} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b: 1,… function
/third_party/googletest/googlemock/test/
Dgmock-function-mocker_test.cc985 MOCK_METHOD(void, func6, (), (noexcept(noexcept(DoesntThrow())), const));
997 EXPECT_TRUE(noexcept(std::declval<MockMethodNoexceptSpecifier>().func6())); in TEST()