diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-31 14:14:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-31 14:14:35 +0100 |
commit | c962cd424190d094b79eb7697a1453d6d87c37a9 (patch) | |
tree | 90c796fd4eaaa753cc4cacf73c4ae590828714e6 /cli/proc_state.rs | |
parent | b07a753756377ebc37cb044d72b58120c1def1c4 (diff) |
chore: remove stale comments (#16491)
Just a drive-by, noticed some stale comments that haven't been removed
earlier.
Diffstat (limited to 'cli/proc_state.rs')
-rw-r--r-- | cli/proc_state.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cli/proc_state.rs b/cli/proc_state.rs index 0410fd3d9..c82743a4e 100644 --- a/cli/proc_state.rs +++ b/cli/proc_state.rs @@ -193,8 +193,6 @@ impl ProcState { let maybe_inspector_server = cli_options.resolve_inspector_server().map(Arc::new); - // FIXME(bartlomieju): `NodeEsmResolver` is not aware of JSX resolver - // created below let maybe_import_map_resolver = maybe_import_map.clone().map(ImportMapResolver::new); let maybe_jsx_resolver = cli_options @@ -477,8 +475,6 @@ impl ProcState { } /// Add the builtin node modules to the graph data. - // FIXME(bartlomieju): appears this function can be called more than once - // if we have npm imports pub async fn prepare_node_std_graph(&self) -> Result<(), AnyError> { if self.node_std_graph_prepared.load(Ordering::Relaxed) { return Ok(()); |