Home
last modified time | relevance | path

Searched full:foo* (Results 28526 - 28550 of 30691) sorted by relevance

1...<<1141114211431144114511461147114811491150>>...1228

/third_party/typescript/tests/cases/fourslash/
H A DgoToImplementationInterfaceMethod_08.ts5 //// interface Foo {
9 //// class SuperBar implements Foo {
H A DgoToImplementationInterfaceMethod_09.ts5 //// interface Foo {
26 //// class MegaBar implements Foo {
H A DgoToImplementationInterfaceMethod_10.ts9 //// interface Foo extends BaseFoo {
18 //// class FooImpl implements Foo {
19 //// [|hello|]() {/**FooImpl*/}
32 //// class FooAndBarImpl implements Foo, Bar {
33 //// [|hello|]() {/**FooAndBarImpl*/}
38 //// function someFunction(x: Foo | Bar) {
42 //// function anotherFunction(x: Foo & Bar) {
H A DgoToImplementationInterfaceMethod_11.ts5 //// interface Foo {
9 //// var x = <Foo> { [|hello|]: () => {} };
10 //// var y = <Foo> (((({ [|hello|]: () => {} }))));
H A DgoToImplementationInterfaceProperty_00.ts5 //// interface Foo {
9 //// var bar: Foo = { [|hello|]: 5 };
12 //// function whatever(x: Foo = { [|hello|]: 5 * 9 }) {
17 //// x: Foo = { [|hello|]: 6 }
19 //// constructor(public f: Foo = { [|hello|]: 7 } ) {}
H A DgoToImplementationInterfaceProperty_01.ts5 //// interface Foo { hello: number }
7 //// class Bar implements Foo {
11 //// function whatever(foo: Foo) {
12 //// foo.he/*reference*/llo;
H A DgoToImplementationInterface_00.ts9 //// interface Baz extends Foo {}
11 //// var bar: Foo = [|{|"parts": ["(","object literal",")"], "kind": "interface"|}{ hello: helloImpl /**0*/ }|];
12 //// var baz: Foo[] = [|[{ hello: helloImpl /**4*/ }]|];
16 //// function whatever(x: Foo = [|{|"parts": ["(","object literal",")"], "kind": "interface"|}{ hello() {/**1*/} }|] ) {
20 //// x: Foo = [|{ hello() {/*2*/} }|]
22 //// constructor(public f: Foo = [|{ hello() {/**3*/} }|] ) {}
H A DgoToImplementationInterface_01.ts5 //// class [|SuperBar|] implements Foo {
9 //// abstract class [|AbstractBar|] implements Foo {
H A DgoToImplementationInterface_02.ts9 //// function createFoo(): Foo {
20 //// let createFoo2 = (): Foo => [|({hello() {}})|];
H A DgoToImplementationInterface_03.ts7 //// var x = <Foo> [|{ hello: () => {} }|];
H A DgoToImplementationInterface_04.ts9 //// var bar: Foo = [|(a) => {/**0*/}|];
11 //// function whatever(x: Foo = [|(a) => {/**1*/}|] ) {
15 //// x: Foo = [|(a) => {/**2*/}|]
17 //// constructor(public f: Foo = [|function(a) {}|] ) {}
H A DgoToImplementationInterface_05.ts9 //// let bar2 = <Foo> [|function(a) {}|];
H A DgoToImplementationInterface_06.ts11 //// let x: Foo = [|class { constructor (a: number) {} }|];
12 //// let y = <Foo> [|class { constructor (a: number) {} }|];
H A DgoToImplementationInterface_07.ts13 //// let x1: Foo = [|{ hello () { /**typeReference*/ } }|];
14 //// let x2: () => Foo = [|(() => { hello () { /**functionType*/} })|];
15 //// let x3: Foo | Bar = [|{ hello () { /**unionType*/} }|];
16 //// let x4: Foo & (Foo & Bar) = [|{ hello () { /**intersectionType*/} }|];
17 //// let x5: [Foo] = [|[{ hello () { /**tupleType*/} }]|];
18 //// let x6: (Foo) = [|{ hello () { /**parenthesizedType*/} }|];
19 //// let x7: (new() => Foo) = [|class { hello () { /**constructorType*/} }|];
20 //// let x8: Foo[] = [|[{ hello () { /**arrayType*/} }]|];
21 //// let x9: { y: Foo }
[all...]
H A DgoToImplementationNamespace_00.ts5 //// namespace /*implementation0*/Foo {
H A DgoToImplementationNamespace_01.ts5 //// namespace Foo {
9 //// Foo.hell/*reference*/o();
H A DgoToImplementationNamespace_02.ts5 //// module Foo {
9 //// Foo.hell/*reference*/o();
H A DgoToImplementationNamespace_03.ts5 //// namespace Foo {
15 //// class [|Baz|] implements Foo.Bar {
19 //// var someVar1 : Foo.Bar = [|{ hello: () => {/**1*/} }|];
21 //// var someVar2 = <Foo.Bar> [|{ hello: () => {/**2*/} }|];
23 //// function whatever(x: Foo.Ba/*reference*/r) {
H A DgoToImplementationNamespace_04.ts5 //// module Foo {
15 //// class [|Baz|] implements Foo.Bar {
19 //// var someVar1 : Foo.Bar = [|{ hello: () => {/**1*/} }|];
21 //// var someVar2 = <Foo.Bar> [|{ hello: () => {/**2*/} }|];
23 //// function whatever(x: Foo.Ba/*reference*/r) {
H A DgoToImplementationNamespace_05.ts5 //// namespace /*implementation0*/Foo./*implementation2*/Baz {
15 //// let x1 = Foo.B/*reference2*/az;
H A DgoToImplementationNamespace_06.ts10 //// let x: typeof Foo = [|{ hello() {} }|];
H A DgoToImplementationShorthandPropertyAssignment_00.ts5 //// interface Foo {
9 //// interface FooConstructor {
10 //// new (): Foo
14 //// Foo: FooConstructor;
17 //// var x = class /*classExpression*/Foo {
27 //// class /*declaredClass*/Foo {
H A DgoToImplementationShorthandPropertyAssignment_01.ts5 //// interface Foo {
9 //// interface FooConstructor {
10 //// new (): Foo
14 //// Foo: FooConstructor;
18 //// var x = class [|Foo|] {
21 //// Foo
30 //// class [|Foo|] {
36 //// Foo
41 //// var y = class Foo {
[all...]
H A DgoToImplementationShorthandPropertyAssignment_02.ts5 //// interface Foo {
9 //// function createFoo(): Foo {
17 //// function whatever(x: Foo) {
H A DgoToImplementationSuper_00.ts5 //// class [|Foo|] {
9 //// class Bar extends Foo {

Completed in 25 milliseconds

1...<<1141114211431144114511461147114811491150>>...1228