| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Review requested:
|
Sorry, something went wrong.
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #64950 +/- ##
==========================================
+ Coverage 90.28% 90.29% +0.01%
==========================================
Files 760 760
Lines 247137 247137
Branches 46617 46607 -10
==========================================
+ Hits 223122 223148 +26
+ Misses 15493 15454 -39
- Partials 8522 8535 +13
... and 29 files with indirect coverage changes 🚀 New features to boost your workflow:
|
Sorry, something went wrong.
Report the rejected import name instead of the import module when throwing for reserved Wasm import names. Signed-off-by: hyemimi <hyemi7375@gmail.com>
Sorry, something went wrong.
Sorry, something went wrong.
Report the rejected import name instead of the import module when throwing for reserved Wasm import names. Signed-off-by: hyemimi <hyemi7375@gmail.com> PR-URL: #64950 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com>
Report the rejected import name instead of the import module when throwing for reserved Wasm import names. Signed-off-by: hyemimi <hyemi7375@gmail.com> PR-URL: #64950 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com>
| Back | FazBrowse Home | New Git URL |
Fix the error message for reserved Wasm import names.
The loader checks impt.name when rejecting import names that start with wasm: or wasm-js:, but the thrown error message reported impt.module instead.
This made the message point at the wrong part of the Wasm import.
This changes the message to report the rejected import name.