Skip to content
Merged
Changes from all 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
65 changes: 59 additions & 6 deletions src/parsed_source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl<'a> ProgramRef<'a> {
| ModuleDecl::ExportDefaultDecl(_)
| ModuleDecl::ExportDefaultExpr(_)
| ModuleDecl::ExportAll(_) => return false,
// the prescence of these means it's a script
// the presence of these means it's a script
ModuleDecl::TsImportEquals(_)
| ModuleDecl::TsExportAssignment(_) => {
return true;
Expand Down Expand Up @@ -471,7 +471,13 @@ impl ParsedSource {

/// Computes whether this program should be treated as a script.
pub fn compute_is_script(&self) -> bool {
self.program_ref().compute_is_script()
if self.media_type().is_typed() {
// for typescript, we need to compute whether it's a script
// because swc parses TsImportEquals as a module
self.program_ref().compute_is_script()
} else {
matches!(self.program_ref(), ProgramRef::Script(_))
}
Copy link
Member Author

@dsherret dsherret Apr 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Slight perf improvement for non-typescript sources.

}
}

Expand Down Expand Up @@ -536,15 +542,15 @@ impl ParsedSource {

#[cfg(test)]
mod test {
use super::*;
use crate::parse_program;
use crate::ParseParams;

#[cfg(feature = "view")]
#[test]
fn should_parse_program() {
use crate::parse_program;
use crate::view::NodeTrait;
use crate::ModuleSpecifier;
use crate::ParseParams;

use super::*;

let program = parse_program(ParseParams {
specifier: ModuleSpecifier::parse("file:///my_file.js").unwrap(),
Expand All @@ -565,4 +571,51 @@ mod test {

assert_eq!(result, 2);
}

#[test]
fn compute_is_script() {
fn get(text: &str, ext: &str) -> bool {
let specifier =
ModuleSpecifier::parse(&format!("file:///my_file.{}", ext)).unwrap();
let media_type = MediaType::from_specifier(&specifier);
let program = parse_program(ParseParams {
specifier,
text: text.into(),
media_type,
capture_tokens: true,
maybe_syntax: None,
scope_analysis: false,
})
.unwrap();
let is_script = program.compute_is_script();
assert_eq!(
program.program_ref().compute_is_script(),
is_script,
"text: {}",
text
);
is_script
}

// false, tla
assert!(!get(
"const mod = await import('./soljson.js');\nconsole.log(mod)",
"js"
));
assert!(!get(
"const mod = await import('./soljson.js');\nconsole.log(mod)",
"js"
));

// false, import
assert!(!get("import './test';", "js"));
assert!(!get("import './test';", "ts"));

// true, require
assert!(get("require('test')", "js"));
assert!(get("require('test')", "ts"));

// true, ts import equals
assert!(get("import value = require('test');", "ts"));
}
}