/third_party/typescript/tests/baselines/reference/ |
D | superInLambdas.types | 9 sayHello(): void { 10 >sayHello : () => void 30 super.sayHello(); 31 >super.sayHello() : void 32 >super.sayHello : () => void 34 >sayHello : () => void 37 var x = () => super.sayHello(); 39 >() => super.sayHello() : () => void 40 >super.sayHello() : void 41 >super.sayHello : () => void [all …]
|
D | superInLambdas.symbols | 8 sayHello(): void { 9 >sayHello : Symbol(User.sayHello, Decl(superInLambdas.ts, 1, 25)) 27 super.sayHello(); 28 >super.sayHello : Symbol(User.sayHello, Decl(superInLambdas.ts, 1, 25)) 30 >sayHello : Symbol(User.sayHello, Decl(superInLambdas.ts, 1, 25)) 33 var x = () => super.sayHello(); 35 >super.sayHello : Symbol(User.sayHello, Decl(superInLambdas.ts, 1, 25)) 37 >sayHello : Symbol(User.sayHello, Decl(superInLambdas.ts, 1, 25)) 39 sayHello(): void { 40 >sayHello : Symbol(RegisteredUser.sayHello, Decl(superInLambdas.ts, 17, 5)) [all …]
|
D | superInLambdas.js | 4 sayHello(): void { 15 super.sayHello(); 18 var x = () => super.sayHello(); 20 sayHello(): void { 22 super.sayHello(); 25 var x = () => super.sayHello(); 34 var x = () => () => () => super.sayHello(); 36 sayHello(): void { 38 var x = () => () => () => super.sayHello(); 50 sayHello(): void { [all …]
|
D | emitThisInSuperMethodCall.types | 5 sayHello() { 6 >sayHello : () => void 18 >() => { function inner() { super.sayHello(); } } : () … 23 super.sayHello(); 24 >super.sayHello() : any 25 >super.sayHello : any 27 >sayHello : any 38 >() => { super.sayHello(); } : () => void 40 super.sayHello(); 41 >super.sayHello() : any [all …]
|
D | superErrors.types | 36 sayHello(): void { 37 >sayHello : () => void 60 super.sayHello(); 61 >super.sayHello() : any 62 >super.sayHello : any 64 >sayHello : any 71 var x = () => super.sayHello(); 73 >() => super.sayHello() : () => any 74 >super.sayHello() : any 75 >super.sayHello : any [all …]
|
D | superErrors.js | 11 sayHello(): void { 23 super.sayHello(); 28 var x = () => super.sayHello(); 34 sayHello(): void { 36 super.sayHello(); 40 var x = () => super.sayHello(); 80 User.prototype.sayHello = function () { method in User 92 _super.sayHello.call(this); 97 var x = function () { return _super.sayHello.call(_this); }; 103 RegisteredUser.prototype.sayHello = function () { method in RegisteredUser [all …]
|
D | esModuleInteropImportTSLibHasImport.symbols | 15 const sayHello = (name?: string) => void (`Hello, ${name}!`); 16 >sayHello : Symbol(sayHello, Decl(hello.ts, 0, 5)) 20 export default sayHello; 21 >sayHello : Symbol(sayHello, Decl(hello.ts, 0, 5)) 24 import sayHello from "./hello"; 25 >sayHello : Symbol(sayHello, Decl(index.ts, 0, 6)) 30 sayHello(username()); 31 >sayHello : Symbol(sayHello, Decl(index.ts, 0, 6))
|
D | superErrors.symbols | 22 sayHello(): void { 23 >sayHello : Symbol(User.sayHello, Decl(superErrors.ts, 8, 25)) 44 super.sayHello(); 51 var x = () => super.sayHello(); 58 sayHello(): void { 59 >sayHello : Symbol(RegisteredUser.sayHello, Decl(superErrors.ts, 31, 5)) 62 super.sayHello(); 63 >super.sayHello : Symbol(User.sayHello, Decl(superErrors.ts, 8, 25)) 65 >sayHello : Symbol(User.sayHello, Decl(superErrors.ts, 8, 25)) 71 var x = () => super.sayHello();
|
D | esModuleInterop.symbols | 2 export function sayHello(): string; 3 >sayHello : Symbol(sayHello, Decl(index.d.ts, 0, 0)) 20 import { sayHello } from "./hybrid"; 21 >sayHello : Symbol(sayHello, Decl(mjts.ts, 0, 8)) 32 sayHello(); 33 >sayHello : Symbol(sayHello, Decl(mjts.ts, 0, 8))
|
D | esModuleInteropImportTSLibHasImport.types | 17 const sayHello = (name?: string) => void (`Hello, ${name}!`); 18 >sayHello : (name?: string) => any 26 export default sayHello; 27 >sayHello : (name?: string) => any 30 import sayHello from "./hello"; 31 >sayHello : (name?: string) => any 36 sayHello(username()); 37 >sayHello(username()) : any 38 >sayHello : (name?: string) => any
|
D | emitThisInSuperMethodCall.js | 3 sayHello() { method in User 11 super.sayHello(); 18 super.sayHello(); 24 super.sayHello(); 49 User.prototype.sayHello = function () { method in User 61 _super.sayHello.call(this); 69 _super.sayHello.call(_this); 75 _super.sayHello.call(this);
|
D | esModuleInterop.types | 2 export function sayHello(): string; 3 >sayHello : () => string 20 import { sayHello } from "./hybrid"; 21 >sayHello : () => string 32 sayHello(); 33 >sayHello() : string 34 >sayHello : () => string
|
D | superInLambdas.errors.txt | 10 sayHello(): void { 21 super.sayHello(); 24 var x = () => super.sayHello(); 26 sayHello(): void { 28 super.sayHello(); 31 var x = () => super.sayHello(); 40 var x = () => () => () => super.sayHello(); 42 sayHello(): void { 44 var x = () => () => () => super.sayHello(); 58 sayHello(): void { [all …]
|
D | esModuleInteropImportTSLibHasImport.js | 10 const sayHello = (name?: string) => void (`Hello, ${name}!`); function 12 export default sayHello; 14 import sayHello from "./hello"; 17 sayHello(username()); 33 const sayHello = (name) => void (`Hello, ${name}!`); 34 exports.default = sayHello;
|
D | emitThisInSuperMethodCall.symbols | 5 sayHello() { 6 >sayHello : Symbol(User.sayHello, Decl(emitThisInSuperMethodCall.ts, 0, 12)) 21 super.sayHello(); 32 super.sayHello(); 42 super.sayHello();
|
D | typeInferenceWithExcessProperties.types | 60 >parrot({ name: "TypeScript", sayHello() { },}) : { name: string; sayHello(): void; } 62 >{ name: "TypeScript", sayHello() { },} : { name: string; sayHello(): void; } 68 sayHello() { 69 >sayHello : () => void
|
D | esModuleInterop.js | 4 export function sayHello(): string; 12 import { sayHello } from "./hybrid"; 17 sayHello(); 50 hybrid_1.sayHello();
|
/third_party/typescript/tests/cases/compiler/ |
D | superInLambdas.ts | 3 sayHello(): void { method in User 14 super.sayHello(); 17 var x = () => super.sayHello(); 19 sayHello(): void { method in RegisteredUser 21 super.sayHello(); 24 var x = () => super.sayHello(); 33 var x = () => () => () => super.sayHello(); 35 sayHello(): void { method in RegisteredUser2 37 var x = () => () => () => super.sayHello(); 49 sayHello(): void { method in RegisteredUser3 [all …]
|
D | superErrors.ts | 10 sayHello(): void { method in User 22 super.sayHello(); 27 var x = () => super.sayHello(); 33 sayHello(): void { method in RegisteredUser 35 super.sayHello(); 39 var x = () => super.sayHello();
|
D | esModuleInteropImportTSLibHasImport.ts | 13 const sayHello = (name?: string) => void (`Hello, ${name}!`); constant 15 export default sayHello; 17 import sayHello from "./hello"; 20 sayHello(username());
|
D | emitThisInSuperMethodCall.ts | 2 sayHello() { method in User 10 super.sayHello(); 17 super.sayHello(); 23 super.sayHello();
|
D | esModuleInterop.ts | 3 export function sayHello(): string; function 11 import { sayHello } from "./hybrid"; 16 sayHello();
|
/third_party/flutter/flutter/packages/flutter/test/services/ |
D | platform_channel_test.dart | 46 if (methodCall['method'] == 'sayHello') { 53 final String result = await channel.invokeMethod('sayHello', 'hello'); 61 if (methodCall['method'] == 'sayHello') { 68 …expect(channel.invokeMethod<List<String>>('sayHello', 'hello'), throwsA(isInstanceOf<TypeError>())… 69 … expect(await channel.invokeListMethod<String>('sayHello', 'hello'), <String>['hello', 'world']); 77 if (methodCall['method'] == 'sayHello') { 84 expect(await channel.invokeListMethod<String>('sayHello', 'hello'), null); 93 if (methodCall['method'] == 'sayHello') { 100 …expect(channel.invokeMethod<Map<String, String>>('sayHello', 'hello'), throwsA(isInstanceOf<TypeEr… 101 …expect(await channel.invokeMapMethod<String, String>('sayHello', 'hello'), <String, String>{'hello… [all …]
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/expressions/the_new_operator/ |
D | new_operator_3.ts | 27 sayHello() { method in Person 32 Assert.equal(person.sayHello(), "Hello,world"); 34 person2.sayHello(); 35 Assert.equal(person2.sayHello(), "Hello,world");
|
/third_party/node/test/fixtures/debugger/ |
D | break.js | 4 function sayHello() { function 9 sayHello(); 11 setTimeout(sayHello, 10);
|