Skip to content

generators should keep function names or something similar #2

@jonathanong

Description

@jonathanong
function fn() {
  return asyncFnRuntime(function*() {
    yield Promise.resolve();
    return true;
  }());
}

should be something like

function fn() {
  return asyncFnRuntime(function* __async$fn__() {
    yield Promise.resolve();
    return true;
  }());
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions