Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@
{
Some(arg) => {
let chunk_name_expr = parser.evaluate_expression(&arg.expr);
match chunk_name_expr.as_string() {

Check failure on line 83 in crates/rspack_plugin_javascript/src/parser_plugin/require_ensure_dependencies_block_parse_plugin.rs

View workflow job for this annotation

GitHub Actions / Run Rust Tests / Rust check

manual implementation of `Option::map`
Some(chunk_name_expr) => Some(chunk_name_expr),
None => return None,
None => None,
}
}
None => None,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = () => "FIXME: build failed";
module.exports = () => "TODO: support parser.scope.terminated"
Comment thread
LingyuCoder marked this conversation as resolved.
Loading