-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(bundler): Fix statement ordering issue #1264
Conversation
60b747f
to
2c99e53
Compare
I found lots of bugs of petgraph... Currently failing tests except For memo, |
This comment has been minimized.
This comment has been minimized.
I found that almost all tests pass if I wrap |
Note: I postponed denoland/deno#8597.
swc_bundler:
export *
andexport { default }
from same source. (Bundler repeat importing issue denoland/deno#8530, Deno bundle regression in both 1.5.4 and 1.6.0 when a module re-exports both * and default denoland/deno#8679)export *
.export { default }
andexport { foo as default }
while handlingexport *
.swc_ecma_transforms:
new
correctly.new
correctly.I investigated further.
8620 fails, and it's expected.
With lots of logging code and in debug build, all other tests pass.
But when I removed logging code and tested in release mode,
also fails.
Try: 8620
hangs with
So... all_simple_paths hangs in certain condition.
Fix for petgraph
I'm trying to capture all graph operations in parsable form, and I'll use it to debug petgraph.
Tests