[playground] Only collect first level of function declarations

#1433 means that Forget now will compile nested function declarations, so we no 
longer need to compile these separately
This commit is contained in:
mofeiZ
2023-03-29 17:14:58 -04:00
parent 57bc5fd56e
commit c2154b2785
@@ -57,6 +57,7 @@ function parseFunctions(
FunctionDeclaration: {
enter(nodePath) {
items.push(nodePath);
nodePath.skip();
},
},
});