Skip to content

Commit

Permalink
parse ignore directives and make them available to the analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
arlyon committed Aug 27, 2024
1 parent 1349c3f commit 3074f05
Show file tree
Hide file tree
Showing 14 changed files with 485 additions and 15 deletions.
14 changes: 14 additions & 0 deletions turbopack/crates/turbopack-ecmascript/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# turbopack-ecmascript

## Adding new parser tests

We use a snapshot-based testing system to ensure that changes to the parser don't break existing code.
To add a new test, you need to create a new directory in `tests/analyzer/graph` with an 'input.js' file
inside.

The snapshot tests are done with the `testing` crate. You can upate them by passing the env var
`UPDATE=1` to the test runner.

```sh
UPDATE=1 cargo test -p turbopack-ecmascript
```
10 changes: 8 additions & 2 deletions turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::{

use swc_core::{
atoms::Atom,
common::{pass::AstNodePath, Mark, Span, Spanned, SyntaxContext, GLOBALS},
common::{comments::Comments, pass::AstNodePath, Mark, Span, Spanned, SyntaxContext, GLOBALS},
ecma::{
ast::*,
atoms::js_word,
Expand Down Expand Up @@ -294,23 +294,29 @@ pub fn create_graph(m: &Program, eval_context: &EvalContext) -> VarGraph {
graph
}

/// A context used for assembling the evaluation graph.
#[derive(Debug)]
pub struct EvalContext {
pub(crate) unresolved_mark: Mark,
pub(crate) top_level_mark: Mark,
pub(crate) imports: ImportMap,
}

impl EvalContext {
/// Produce a new [EvalContext] from a [Program]. If you wish to support
/// webpackIgnore or turbopackIgnore comments, you must pass those in,
/// since the AST does not include comments by default.
pub fn new(
module: &Program,
unresolved_mark: Mark,
top_level_mark: Mark,
comments: Option<&dyn Comments>,
source: Option<Vc<Box<dyn Source>>>,
) -> Self {
Self {
unresolved_mark,
top_level_mark,
imports: ImportMap::analyze(module, source),
imports: ImportMap::analyze(module, source, comments),
}
}

Expand Down
89 changes: 84 additions & 5 deletions turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
use std::{collections::BTreeMap, fmt::Display};
use std::{
collections::{BTreeMap, HashMap},
fmt::Display,
};

use indexmap::{IndexMap, IndexSet};
use once_cell::sync::Lazy;
use swc_core::{
common::{source_map::SmallPos, Span},
common::{comments::Comments, source_map::SmallPos, Span, Spanned},
ecma::{
ast::*,
atoms::{js_word, JsWord},
Expand Down Expand Up @@ -136,6 +139,17 @@ pub(crate) struct ImportMap {

/// True if the module is an ESM module due to top-level await.
has_top_level_await: bool,

/// Locations of webpackIgnore or turbopackIgnore comments
/// This is a webpack feature that allows opting out of static
/// imports, which we should respect.
///
/// Example:
/// ```js
/// const a = import(/* webpackIgnore: true */ "a");
/// const b = import(/* turbopackIgnore: true */ "b");
/// ```
turbopack_ignores: HashMap<Span, bool>,
}

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
Expand Down Expand Up @@ -180,6 +194,10 @@ impl ImportMap {
None
}

pub fn get_ignore(&self, span: Span) -> Option<bool> {

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / rustdoc check / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / rust check / build

method `get_ignore` is never used

Check failure on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / rust check / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / build-native / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / stable - aarch64-unknown-linux-gnu - node@16

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-unknown-linux-gnu - node@16

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / build / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test cargo benches / Test

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test unit (18) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test unit (20) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test cargo unit / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test next-swc wasm / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / types and precompiled / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Run devlow benchmarks (--turbopack=true, --scenario=heavy-npm-deps --page=homepage) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr integration / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (dev) (1/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (dev) (3/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (dev) (4/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (dev) (2/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Run devlow benchmarks (--turbopack=false, --scenario=heavy-npm-deps --page=homepage) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (prod) (1/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / lint / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (prod) (2/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (prod) (3/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (prod) (4/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (3/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (1/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (4/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (2/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test firefox and safari / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (4/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (1/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (4/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (10/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (5/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (5/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (2/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (11/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (12/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (8/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (4/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (2/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (2/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (1/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (5/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (7/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (6/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (3/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test integration (9/12) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr dev (3/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr dev (1/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (3/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (1/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (5/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr dev (2/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (2/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (1/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test dev (1/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr dev (4/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (3/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (5/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test dev (4/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test dev (2/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test dev (3/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr prod (3/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-pc-windows-msvc - node@16

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test prod (2/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test prod (1/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr prod (2/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (4/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test prod (4/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test prod (3/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr prod (4/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test prod (5/5) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests when deployed (4/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests when deployed (2/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests when deployed (3/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / Test new tests when deployed (1/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test ppr prod (1/4) / build

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / stable - aarch64-apple-darwin - node@16

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-apple-darwin - node@16

method `get_ignore` is never used

Check warning on line 197 in turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (3/5) / build

method `get_ignore` is never used
self.turbopack_ignores.get(&span).copied()
}

// TODO this could return &str instead of String to avoid cloning
pub fn get_binding(&self, id: &Id) -> Option<(usize, Option<RcStr>)> {
if let Some((i, i_sym)) = self.imports.get(id) {
Expand All @@ -200,12 +218,17 @@ impl ImportMap {
}

/// Analyze ES import
pub(super) fn analyze(m: &Program, source: Option<Vc<Box<dyn Source>>>) -> Self {
pub(super) fn analyze(
m: &Program,
source: Option<Vc<Box<dyn Source>>>,
comments: Option<&dyn Comments>,
) -> Self {
let mut data = ImportMap::default();

m.visit_with(&mut Analyzer {
data: &mut data,
source,
comments,
});

data
Expand All @@ -215,6 +238,7 @@ impl ImportMap {
struct Analyzer<'a> {
data: &'a mut ImportMap,
source: Option<Vc<Box<dyn Source>>>,
comments: Option<&'a dyn Comments>,
}

impl<'a> Analyzer<'a> {
Expand Down Expand Up @@ -409,8 +433,63 @@ impl Visit for Analyzer<'_> {
fn visit_export_default_expr(&mut self, _: &ExportDefaultExpr) {
self.data.has_exports = true;
}
fn visit_stmt(&mut self, _: &Stmt) {
// don't visit children

fn visit_stmt(&mut self, n: &Stmt) {
if self.comments.is_some() {
// only visit children if we potentially need to mark import / requires
n.visit_children_with(self);
}
}

/// check if import or require contains an ignore comment
///
/// We are checking for the following cases:
/// - import(/* webpackIgnore: true */ "a")
/// - require(/* webpackIgnore: true */ "a")
///
/// We can do this by checking if any of the comment spans are between the
/// callee and the first argument.
fn visit_call_expr(&mut self, n: &CallExpr) {
// we can actually unwrap thanks to the optimisation above
// but it can't hurt to be safe...
if let Some(comments) = self.comments {
let callee_span = match &n.callee {
Callee::Import(Import { span, .. }) => Some(span),
// this assumes you cannot reassign `require`
Callee::Expr(box Expr::Ident(Ident { span, sym, .. })) if sym == "require" => {
Some(span)
}
_ => None,
};

// we are interested here in the last comment with a valid directive
let ignore_statement = n
.args
.first()
.map(|arg| arg.span_lo())
.and_then(|comment_pos| comments.get_leading(comment_pos))
.iter()
.flatten()
.rev()
.filter_map(|comment| {
let (directive, value) = comment.text.trim().split_once(':')?;
// support whitespace between the colon
match (directive.trim(), value.trim()) {
("webpackIgnore" | "turbopackIgnore", "true") => Some(true),
("webpackIgnore" | "turbopackIgnore", "false") => Some(false),
_ => None, // ignore anything else
}
})
.next();

if let Some((callee_span, ignore_statement)) = callee_span.zip(ignore_statement) {
self.data
.turbopack_ignores
.insert(*callee_span, ignore_statement);
};
}

n.visit_children_with(self);
}

fn visit_program(&mut self, m: &Program) {
Expand Down
2 changes: 1 addition & 1 deletion turbopack/crates/turbopack-ecmascript/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ impl EcmascriptParsable for EcmascriptModuleAsset {
impl EcmascriptAnalyzable for EcmascriptModuleAsset {
#[turbo_tasks::function]
fn analyze(self: Vc<Self>) -> Vc<AnalyzeEcmascriptModuleResult> {
analyse_ecmascript_module(self, None)
analyse_ecmascript_module(self, None, None)
}

/// Generates module contents without an analysis pass. This is useful for
Expand Down
1 change: 1 addition & 0 deletions turbopack/crates/turbopack-ecmascript/src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@ async fn parse_content(
&parsed_program,
unresolved_mark,
top_level_mark,
None,
Some(source),
);

Expand Down
12 changes: 10 additions & 2 deletions turbopack/crates/turbopack-ecmascript/src/references/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub mod util;

use std::{
borrow::Cow,
collections::{BTreeMap, HashMap},
collections::{BTreeMap, HashMap, HashSet},
future::Future,
mem::take,
pin::Pin,
Expand Down Expand Up @@ -393,16 +393,23 @@ where
HANDLER.set(handler, || GLOBALS.set(globals, f))
}

/// Analyse a provided [EcmascriptModuleAsset] and return a
/// [AnalyzeEcmascriptModuleResult].
///
/// # Arguments
/// * ignored_spans - A set of spans to ignore when analysing the module. This is useful for example
/// to respect turbopackIgnore directives on ignores.
#[turbo_tasks::function]
pub(crate) async fn analyse_ecmascript_module(
module: Vc<EcmascriptModuleAsset>,
part: Option<Vc<ModulePart>>,
ignored_spans: Option<Vc<HashSet<Span>>>,
) -> Result<Vc<AnalyzeEcmascriptModuleResult>> {
let span = {
let module = module.ident().to_string().await?.to_string();
tracing::info_span!("analyse ecmascript module", module = module)
};
let result = analyse_ecmascript_module_internal(module, part)
let result = analyse_ecmascript_module_internal(module, part, ignored_spans)
.instrument(span)
.await;

Expand All @@ -418,6 +425,7 @@ pub(crate) async fn analyse_ecmascript_module(
pub(crate) async fn analyse_ecmascript_module_internal(
module: Vc<EcmascriptModuleAsset>,
part: Option<Vc<ModulePart>>,
webpack_ignored_effects: Option<Vc<HashSet<Span>>>,

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / rustdoc check / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / rust check / build

unused variable: `webpack_ignored_effects`

Check failure on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / rust check / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / build-native / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / stable - aarch64-unknown-linux-gnu - node@16

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-unknown-linux-gnu - node@16

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / build / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test cargo benches / Test

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test unit (18) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test unit (20) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test cargo unit / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test next-swc wasm / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / types and precompiled / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Run devlow benchmarks (--turbopack=true, --scenario=heavy-npm-deps --page=homepage) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr integration / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (dev) (1/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (dev) (3/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (dev) (4/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (dev) (2/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Run devlow benchmarks (--turbopack=false, --scenario=heavy-npm-deps --page=homepage) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (prod) (1/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / lint / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (prod) (2/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (prod) (3/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests for flakes (prod) (4/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (3/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (1/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (4/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (2/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test firefox and safari / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (4/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (1/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (4/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (10/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (5/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (5/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack development integration (2/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (11/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (12/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (8/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (4/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (2/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (2/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (1/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (5/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (7/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (6/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (3/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test integration (9/12) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr dev (3/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr dev (1/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (3/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (1/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (5/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr dev (2/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (2/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (1/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test dev (1/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr dev (4/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (3/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production (5/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test dev (4/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test dev (2/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test dev (3/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr prod (3/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-pc-windows-msvc - node@16

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test prod (2/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test prod (1/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr prod (2/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack production integration (4/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test prod (4/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test prod (3/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr prod (4/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test prod (5/5) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests when deployed (4/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests when deployed (2/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests when deployed (3/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / Test new tests when deployed (1/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test ppr prod (1/4) / build

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / stable - aarch64-apple-darwin - node@16

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-apple-darwin - node@16

unused variable: `webpack_ignored_effects`

Check warning on line 428 in turbopack/crates/turbopack-ecmascript/src/references/mod.rs

View workflow job for this annotation

GitHub Actions / test turbopack dev (3/5) / build

unused variable: `webpack_ignored_effects`
) -> Result<Vc<AnalyzeEcmascriptModuleResult>> {
let raw_module = module.await?;

Expand Down
18 changes: 13 additions & 5 deletions turbopack/crates/turbopack-ecmascript/src/tree_shake/asset.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
use std::collections::HashSet;

use anyhow::{Context, Result};
use swc_core::common::Span;
use turbo_tasks::Vc;
use turbopack_core::{
asset::{Asset, AssetContent},
Expand Down Expand Up @@ -59,7 +62,11 @@ impl EcmascriptAnalyzable for EcmascriptModulePartAsset {
async fn analyze(self: Vc<Self>) -> Result<Vc<AnalyzeEcmascriptModuleResult>> {
let this = self.await?;
let part = this.part;
Ok(analyse_ecmascript_module(this.full_module, Some(part)))
Ok(analyse_ecmascript_module(
this.full_module,
Some(part),
None,
))
}

#[turbo_tasks::function]
Expand Down Expand Up @@ -131,7 +138,7 @@ impl Module for EcmascriptModulePartAsset {
async fn references(&self) -> Result<Vc<ModuleReferences>> {
let split_data = split_module(self.full_module).await?;

let analyze = analyze(self.full_module, self.part).await?;
let analyze = analyze(self.full_module, self.part, None).await?;

let (deps, entrypoints) = match &*split_data {
SplitResult::Ok {
Expand Down Expand Up @@ -264,16 +271,17 @@ impl EcmascriptModulePartAsset {
pub(super) async fn analyze(self: Vc<Self>) -> Result<Vc<AnalyzeEcmascriptModuleResult>> {
let this = self.await?;

Ok(analyze(this.full_module, this.part))
Ok(analyze(this.full_module, this.part, None))
}
}

#[turbo_tasks::function]
async fn analyze(
fn analyze(
module: Vc<EcmascriptModuleAsset>,
part: Vc<ModulePart>,
ignored_spans: Option<Vc<HashSet<Span>>>,
) -> Result<Vc<AnalyzeEcmascriptModuleResult>> {
Ok(analyse_ecmascript_module(module, Some(part)))
Ok(analyse_ecmascript_module(module, Some(part), ignored_spans))
}

#[turbo_tasks::value_impl]
Expand Down
3 changes: 3 additions & 0 deletions turbopack/crates/turbopack-ecmascript/src/tree_shake/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ pub(super) async fn split(
&program,
eval_context.unresolved_mark,
eval_context.top_level_mark,
None,
Some(source),
);

Expand Down Expand Up @@ -629,6 +630,7 @@ pub(super) async fn part_of_module(
eval_context.unresolved_mark,
eval_context.top_level_mark,
None,
None,
);

return Ok(ParseResult::Ok {
Expand Down Expand Up @@ -706,6 +708,7 @@ pub(super) async fn part_of_module(
eval_context.unresolved_mark,
eval_context.top_level_mark,
None,
None,
);
return Ok(ParseResult::Ok {
program,
Expand Down
Loading

0 comments on commit 3074f05

Please sign in to comment.