/third_party/typescript/tests/baselines/reference/ |
D | methodSignaturesWithOverloads2.types | 5 >c : { func4?(x: number): number; func4?(s: string): string; func5?: { (x: number): number; (s: str… 7 func4?(x: number): number; 8 >func4 : { (x: number): number; (s: string): string; } 11 func4?(s: string): string; 12 >func4 : { (x: number): number; (s: string): string; } 28 c.func4 = c.func5; 29 >c.func4 = c.func5 : { (x: number): number; (s: string): string; } 30 >c.func4 : { (x: number): number; (s: string): string; } 31 >c : { func4?(x: number): number; func4?(s: string): string; func5?: { (x: number): number; (s: str… 32 >func4 : { (x: number): number; (s: string): string; } [all …]
|
D | methodSignaturesWithOverloads2.symbols | 7 func4?(x: number): number; 8 >func4 : Symbol(func4, Decl(methodSignaturesWithOverloads2.ts, 2, 8), Decl(methodSignaturesWithOver… 11 func4?(s: string): string; 12 >func4 : Symbol(func4, Decl(methodSignaturesWithOverloads2.ts, 2, 8), Decl(methodSignaturesWithOver… 28 c.func4 = c.func5; 29 >c.func4 : Symbol(func4, Decl(methodSignaturesWithOverloads2.ts, 2, 8), Decl(methodSignaturesWithOv… 31 >func4 : Symbol(func4, Decl(methodSignaturesWithOverloads2.ts, 2, 8), Decl(methodSignaturesWithOver… 36 c.func5 = c.func4; 40 >c.func4 : Symbol(func4, Decl(methodSignaturesWithOverloads2.ts, 2, 8), Decl(methodSignaturesWithOv… 42 >func4 : Symbol(func4, Decl(methodSignaturesWithOverloads2.ts, 2, 8), Decl(methodSignaturesWithOver… [all …]
|
D | methodSignaturesWithOverloads2.js | 5 func4?(x: number): number; 6 func4?(s: string): string; 14 c.func4 = c.func5; 15 c.func5 = c.func4; 19 func4?<T>(x: T): number; 20 func4? <T>(s: T): string; 28 c2.func4 = c2.func5; 29 c2.func5 = c2.func4; 35 c.func4 = c.func5; 36 c.func5 = c.func4; [all …]
|
D | noImplicitThisBigThis.types | 34 >createObjNoCrash : () => { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; f… 37 …func4() { return this; }, func5() { 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… 60 func4() { 61 >func4 : () => { func1(): any; func2(): any; func3(): any; func4(): any; func5(): any; func6(): any… [all …]
|
D | methodSignaturesWithOverloads.types | 5 >c : { func4?(x: number): number; func4?(s: string): string; func5?: { (x: number): number; (s: str… 7 func4?(x: number): number; 8 >func4 : { (x: number): number; (s: string): string; } 11 func4(s: string): string; // error, mismatched optionality 12 >func4 : { (x: number): number; (s: string): string; } 28 >c2 : { func4?<T>(x: T): number; func4?<T>(s: T): string; func5?: { <T>(x: T): number; <T>(s: T): s… 30 func4<T>(x: T): number; 31 >func4 : { <T>(x: T): number; <T>(s: T): string; } 34 func4? <T>(s: T): string; // error, mismatched optionality 35 >func4 : { <T>(x: T): number; <T>(s: T): string; }
|
D | functionLiterals.types | 76 >c : { func4(x: number): number; func4(s: string): string; func5: { (x: number): number; (s: string… 78 func4(x: number): number; 79 >func4 : { (x: number): number; (s: string): string; } 82 func4(s: string): string; 83 >func4 : { (x: number): number; (s: string): string; } 99 c.func4 = c.func5; 100 >c.func4 = c.func5 : { (x: number): number; (s: string): string; } 101 >c.func4 : { (x: number): number; (s: string): string; } 102 >c : { func4(x: number): number; func4(s: string): string; func5: { (x: number): number; (s: string… 103 >func4 : { (x: number): number; (s: string): string; } [all …]
|
D | functionLiterals.js | 19 func4(x: number): number; 20 func4(s: string): string; 28 c.func4 = c.func5; 29 c.func5 = c.func4; 47 func4<T>(x: T): number; 48 func4<T>(s: T): string; 56 c2.func4 = c2.func5; 57 c2.func5 = c2.func4; 72 c.func4 = c.func5; 73 c.func5 = c.func4; [all …]
|
D | methodSignaturesWithOverloads.symbols | 7 func4?(x: number): number; 8 >func4 : Symbol(func4, Decl(methodSignaturesWithOverloads.ts, 2, 8), Decl(methodSignaturesWithOverl… 11 func4(s: string): string; // error, mismatched optionality 12 >func4 : Symbol(func4, Decl(methodSignaturesWithOverloads.ts, 2, 8), Decl(methodSignaturesWithOverl… 30 func4<T>(x: T): number; 31 >func4 : Symbol(func4, Decl(methodSignaturesWithOverloads.ts, 11, 9), Decl(methodSignaturesWithOver… 36 func4? <T>(s: T): string; // error, mismatched optionality 37 >func4 : Symbol(func4, Decl(methodSignaturesWithOverloads.ts, 11, 9), Decl(methodSignaturesWithOver…
|
D | functionLiterals.symbols | 72 func4(x: number): number; 73 >func4 : Symbol(func4, Decl(functionLiterals.ts, 16, 8), Decl(functionLiterals.ts, 17, 29)) 76 func4(s: string): string; 77 >func4 : Symbol(func4, Decl(functionLiterals.ts, 16, 8), Decl(functionLiterals.ts, 17, 29)) 93 c.func4 = c.func5; 94 >c.func4 : Symbol(func4, Decl(functionLiterals.ts, 16, 8), Decl(functionLiterals.ts, 17, 29)) 96 >func4 : Symbol(func4, Decl(functionLiterals.ts, 16, 8), Decl(functionLiterals.ts, 17, 29)) 101 c.func5 = c.func4; 105 >c.func4 : Symbol(func4, Decl(functionLiterals.ts, 16, 8), Decl(functionLiterals.ts, 17, 29)) 107 >func4 : Symbol(func4, Decl(functionLiterals.ts, 16, 8), Decl(functionLiterals.ts, 17, 29)) [all …]
|
D | methodSignaturesWithOverloads.js | 5 func4?(x: number): number; 6 func4(s: string): string; // error, mismatched optionality 14 func4<T>(x: T): number; 15 func4? <T>(s: T): string; // error, mismatched optionality
|
D | emitDefaultParametersFunctionPropertyES6.types | 3 …; func2(x?: string): void; func3(x: string, z: number, y?: string): void; func4(x: string, z: numb… 4 …func4(x: string, z: number, y = "hello", ...rest) { },} : { func1(y?: number, ...rest: any[]): voi… 24 func4(x: string, z: number, y = "hello", ...rest) { }, 25 >func4 : (x: string, z: number, y?: string, ...rest: any[]) => void
|
D | emitDefaultParametersFunctionProperty.types | 3 …; func2(x?: string): void; func3(x: string, z: number, y?: string): void; func4(x: string, z: numb… 4 …func4(x: string, z: number, y = "hello", ...rest) { },} : { func1(y?: number, ...rest: any[]): voi… 24 func4(x: string, z: number, y = "hello", ...rest) { }, 25 >func4 : (x: string, z: number, y?: string, ...rest: any[]) => void
|
D | methodSignaturesWithOverloads.errors.txt | 9 func4?(x: number): number; 10 func4(s: string): string; // error, mismatched optionality 20 func4<T>(x: T): number; 21 func4? <T>(s: T): string; // error, mismatched optionality
|
D | noImplicitThisBigThis.js | 29 func4() { 77 func4: function () { 109 func4(): any;
|
D | emitDefaultParametersFunctionProperty.symbols | 20 func4(x: string, z: number, y = "hello", ...rest) { }, 21 >func4 : Symbol(func4, Decl(emitDefaultParametersFunctionProperty.ts, 3, 49))
|
D | emitDefaultParametersFunctionPropertyES6.symbols | 20 func4(x: string, z: number, y = "hello", ...rest) { }, 21 >func4 : Symbol(func4, Decl(emitDefaultParametersFunctionPropertyES6.ts, 3, 49))
|
D | implicitAnyDeclareFunctionWithoutFormalType.symbols | 22 function func4(z= null, w= undefined) { }; // error at "z,w" 23 >func4 : Symbol(func4, Decl(implicitAnyDeclareFunctionWithoutFormalType.ts, 4, 28))
|
D | emitDefaultParametersFunctionPropertyES6.js | 6 func4(x: string, z: number, y = "hello", ...rest) { }, method 14 func4(x, z, y = "hello", ...rest) { }, method
|
D | noImplicitThisBigThis.symbols | 56 func4() { 57 >func4 : Symbol(func4, Decl(noImplicitThisBigThis.ts, 26, 10))
|
D | moduleExportAlias.symbols | 20 b.func4; 21 >b.func4 : Symbol(b.func4, Decl(b.js, 5, 43)) 23 >func4 : Symbol(b.func4, Decl(b.js, 5, 43)) 132 module.exports.func4 = function () { }; 133 >module.exports.func4 : Symbol(func4, Decl(b.js, 5, 43)) 134 >module.exports : Symbol(func4, Decl(b.js, 5, 43)) 137 >func4 : Symbol(func4, Decl(b.js, 5, 43))
|
/third_party/typescript/tests/cases/conformance/types/objectTypeLiteral/methodSignatures/ |
D | methodSignaturesWithOverloads2.ts | 4 func4?(x: number): number; 5 func4?(s: string): string; variable 13 c.func4 = c.func5; 14 c.func5 = c.func4; 18 func4?<T>(x: T): number; 19 func4? <T>(s: T): string; variable 27 c2.func4 = c2.func5; 28 c2.func5 = c2.func4;
|
D | functionLiterals.ts | 18 func4(x: number): number; 19 func4(s: string): string; variable 27 c.func4 = c.func5; 28 c.func5 = c.func4; 46 func4<T>(x: T): number; 47 func4<T>(s: T): string; variable 55 c2.func4 = c2.func5; 56 c2.func5 = c2.func4;
|
D | methodSignaturesWithOverloads.ts | 4 func4?(x: number): number; 5 func4(s: string): string; // error, mismatched optionality variable 13 func4<T>(x: T): number; 14 func4? <T>(s: T): string; // error, mismatched optionality variable
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | function-name.js | 73 var func4; variable 74 func4 = function () {} function 75 assertMethodName(func4, 'func4'); 100 func4: () => {}, 126 assertMethodName(o.func4, 'func4'); 157 static func4() {} method in A 188 assertMethodName(A.func4, 'func4'); 219 static func4() {} method in B 250 assertMethodName(B.func4, 'func4');
|
/third_party/skia/resources/sksl/inliner/ |
D | TrivialArgumentsInlineDirectly.sksl | 29 half4 func4(half4 h4) { 56 var = func4(half4(s.h)); 57 var = func4(s.ah4[0].xxxy); 58 var = func4(colorGreen); 66 var = func4(s.h4.y001);
|