Added '[Symbol.toStringTag]' property to 'GeneratorFunction'.

This commit is contained in:
Daniel Rosenwasser 2016-01-05 11:01:28 -05:00
parent fec691ec22
commit 347359c18e

2
src/lib/es6.d.ts vendored
View File

@ -565,7 +565,7 @@ interface IterableIterator<T> extends Iterator<T> {
}
interface GeneratorFunction extends Function {
[Symbol.toStringTag]: string;
}
interface GeneratorFunctionConstructor {