TypeScript/tests/baselines/reference/generatorTypeCheck62.js
2017-03-29 08:52:00 -07:00

63 lines
1.6 KiB
TypeScript

//// [generatorTypeCheck62.ts]
export interface StrategicState {
lastStrategyApplied?: string;
}
export function strategy<T extends StrategicState>(stratName: string, gen: (a: T) => IterableIterator<T | undefined>): (a: T) => IterableIterator<T | undefined> {
return function*(state) {
for (const next of gen(state)) {
if (next) {
next.lastStrategyApplied = stratName;
}
yield next;
}
}
}
export interface Strategy<T> {
(a: T): IterableIterator<T | undefined>;
}
export interface State extends StrategicState {
foo: number;
}
export const Nothing1: Strategy<State> = strategy("Nothing", function*(state: State) {
return state;
});
export const Nothing2: Strategy<State> = strategy("Nothing", function*(state: State) {
yield state;
});
export const Nothing3: Strategy<State> = strategy("Nothing", function* (state: State) {
yield ;
return state;
});
//// [generatorTypeCheck62.js]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function strategy(stratName, gen) {
return function* (state) {
for (const next of gen(state)) {
if (next) {
next.lastStrategyApplied = stratName;
}
yield next;
}
};
}
exports.strategy = strategy;
exports.Nothing1 = strategy("Nothing", function* (state) {
return state;
});
exports.Nothing2 = strategy("Nothing", function* (state) {
yield state;
});
exports.Nothing3 = strategy("Nothing", function* (state) {
yield;
return state;
});