Creator 不支持 Generator 吗?

Creator 用的是最新版,像下面的代码编辑器就会提示: regeneratorRuntime is not defined.

function* foo(x) {
    yield x + 1;
    yield x + 2;
    return x + 3;
}