Merge pull request #2683 from theit8514/statc-ram-imports

Handle 'export default' in static RAM calculation
This commit is contained in:
hydroflame 2022-01-17 15:50:10 -05:00 committed by GitHub
commit 0dbf2c48cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -388,7 +388,8 @@ function parseOnlyCalculateDeps(code: string, currentModule: string): any {
} }
}, },
FunctionDeclaration: (node: any) => { FunctionDeclaration: (node: any) => {
const key = currentModule + "." + node.id.name; // node.id will be null when using 'export default'. Add a module name indicating the default export.
const key = currentModule + "." + (node.id === null ? "__SPECIAL_DEFAULT_EXPORT__" : node.id.name);
walk.recursive(node, { key: key }, commonVisitors()); walk.recursive(node, { key: key }, commonVisitors());
}, },
}, },