At the moment, GeneratorFunction is not modelled in the n4js built-in types. Check example: ``` const t: GeneratorFunction = function*() { // ... } t.name; // XPECT no error t.length; // XPECT no error ```