expand turns yield* into yield
Created by: jlongster
An unfortunate side effect of expansion:
function* foo(){
yield* 10
}
is expanded into
function* foo$600() {
yield 10;
}
It drops the star on yield*
. Probably an easy enough bug to fix.