Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion crates/oxc_isolated_declarations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ authors.workspace = true
categories.workspace = true
edition.workspace = true
homepage.workspace = true
include = ["/examples", "/src"]
include = [
"/examples",
"/src",
]
keywords.workspace = true
license.workspace = true
publish = true
Expand All @@ -27,6 +30,7 @@ oxc_diagnostics = { workspace = true }
oxc_span = { workspace = true }
oxc_syntax = { workspace = true, features = ["to_js_string"] }

bitflags = { workspace = true }
rustc-hash = { workspace = true }

[dev-dependencies]
Expand Down
94 changes: 40 additions & 54 deletions crates/oxc_isolated_declarations/src/scope.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use std::cell::Cell;

use bitflags::bitflags;
use oxc_allocator::{Allocator, Vec};
#[allow(clippy::wildcard_imports)]
use oxc_ast::ast::*;
Expand All @@ -8,27 +9,28 @@ use oxc_ast::AstBuilder;
use oxc_ast::{visit::walk::*, Visit};
use oxc_span::Atom;
use oxc_syntax::scope::{ScopeFlags, ScopeId};
use rustc_hash::FxHashSet;
use rustc_hash::FxHashMap;

bitflags! {
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct KindFlags: u8 {
const Value = 1 << 0;
const Type = 1 << 1;
const All = Self::Value.bits() | Self::Type.bits();
}
}

/// Declaration scope.
#[derive(Debug)]
struct Scope<'a> {
type_bindings: FxHashSet<Atom<'a>>,
value_bindings: FxHashSet<Atom<'a>>,
type_references: FxHashSet<Atom<'a>>,
value_references: FxHashSet<Atom<'a>>,
bindings: FxHashMap<Atom<'a>, KindFlags>,
references: FxHashMap<Atom<'a>, KindFlags>,
flags: ScopeFlags,
}

impl<'a> Scope<'a> {
fn new(flags: ScopeFlags) -> Self {
Self {
value_bindings: FxHashSet::default(),
type_bindings: FxHashSet::default(),
type_references: FxHashSet::default(),
value_references: FxHashSet::default(),
flags,
}
Self { bindings: FxHashMap::default(), references: FxHashMap::default(), flags }
}
}

Expand All @@ -51,48 +53,36 @@ impl<'a> ScopeTree<'a> {
}

pub fn has_reference(&self, name: &str) -> bool {
let Some(scope) = self.levels.last() else { unreachable!() };
scope.value_references.contains(name) || scope.type_references.contains(name)
}

fn add_value_binding(&mut self, ident: Atom<'a>) {
let scope = self.levels.last_mut().unwrap();
scope.value_bindings.insert(ident);
}

fn add_type_binding(&mut self, ident: Atom<'a>) {
let scope = self.levels.last_mut().unwrap();
scope.type_bindings.insert(ident);
let scope = self.levels.last().unwrap();
scope.references.contains_key(name)
}

fn add_value_reference(&mut self, ident: Atom<'a>) {
fn add_binding(&mut self, name: Atom<'a>, flags: KindFlags) {
let scope = self.levels.last_mut().unwrap();
scope.value_references.insert(ident);
scope.bindings.insert(name, flags);
}

fn add_type_reference(&mut self, ident: Atom<'a>) {
fn add_reference(&mut self, name: Atom<'a>, flags: KindFlags) {
let scope = self.levels.last_mut().unwrap();
scope.type_references.insert(ident);
scope.references.insert(name, flags);
}

/// Resolve references in the current scope, and propagate unresolved ones.
fn resolve_references(&mut self) {
debug_assert!(self.levels.len() >= 2);

// Remove the current scope.
let mut current_scope = self.levels.pop().unwrap();
let current_scope = self.levels.pop().unwrap();

// Resolve references in the current scope.
let current_value_bindings = current_scope.value_bindings;
let current_value_references = current_scope.value_references;
let val_diff = current_value_references.difference(&current_value_bindings).cloned();
current_scope.type_references.extend(val_diff);
let current_type_bindings = current_scope.type_bindings;
let current_type_references = current_scope.type_references;
let type_diff = current_type_references.difference(&current_type_bindings).cloned();
let current_bindings = current_scope.bindings;
let mut current_references = current_scope.references;
current_references.retain(|name, reference_flags| {
!current_bindings.get(name).is_some_and(|flags| flags.contains(*reference_flags))
});

// Merge unresolved references to the parent scope.
self.levels.last_mut().unwrap().type_references.extend(type_diff);
self.levels.last_mut().unwrap().references.extend(current_references);
}
}

Expand All @@ -107,19 +97,19 @@ impl<'a> Visit<'a> for ScopeTree<'a> {
}

fn visit_identifier_reference(&mut self, ident: &IdentifierReference<'a>) {
self.add_value_reference(ident.name.clone());
self.add_reference(ident.name.clone(), KindFlags::Value);
}

fn visit_binding_pattern(&mut self, pattern: &BindingPattern<'a>) {
if let BindingPatternKind::BindingIdentifier(ident) = &pattern.kind {
self.add_value_binding(ident.name.clone());
self.add_binding(ident.name.clone(), KindFlags::Value);
}
walk_binding_pattern(self, pattern);
}

fn visit_ts_type_name(&mut self, name: &TSTypeName<'a>) {
if let TSTypeName::IdentifierReference(ident) = name {
self.add_type_reference(ident.name.clone());
self.add_reference(ident.name.clone(), KindFlags::Type);
} else {
walk_ts_type_name(self, name);
}
Expand All @@ -128,7 +118,7 @@ impl<'a> Visit<'a> for ScopeTree<'a> {
fn visit_ts_type_query(&mut self, ty: &TSTypeQuery<'a>) {
if let Some(type_name) = ty.expr_name.as_ts_type_name() {
let ident = TSTypeName::get_first_name(type_name);
self.add_value_reference(ident.name.clone());
self.add_reference(ident.name.clone(), KindFlags::Value);
} else {
walk_ts_type_query(self, ty);
}
Expand All @@ -141,17 +131,15 @@ impl<'a> Visit<'a> for ScopeTree<'a> {
// export { ... }
for specifier in &decl.specifiers {
if let Some(name) = specifier.local.identifier_name() {
self.add_type_reference(name.clone());
self.add_value_reference(name);
self.add_reference(name, KindFlags::All);
}
}
}
}

fn visit_export_default_declaration(&mut self, decl: &ExportDefaultDeclaration<'a>) {
if let ExportDefaultDeclarationKind::Identifier(ident) = &decl.declaration {
self.add_type_reference(ident.name.clone());
self.add_value_reference(ident.name.clone());
self.add_reference(ident.name.clone(), KindFlags::All);
} else {
walk_export_default_declaration(self, decl);
}
Expand All @@ -164,32 +152,30 @@ impl<'a> Visit<'a> for ScopeTree<'a> {
}
Declaration::FunctionDeclaration(decl) => {
if let Some(id) = decl.id.as_ref() {
self.add_value_binding(id.name.clone());
self.add_binding(id.name.clone(), KindFlags::Value);
}
}
Declaration::ClassDeclaration(decl) => {
if let Some(id) = decl.id.as_ref() {
self.add_value_binding(id.name.clone());
self.add_binding(id.name.clone(), KindFlags::Value);
}
}
Declaration::TSTypeAliasDeclaration(decl) => {
self.add_type_binding(decl.id.name.clone());
self.add_binding(decl.id.name.clone(), KindFlags::Type);
}
Declaration::TSInterfaceDeclaration(decl) => {
self.add_type_binding(decl.id.name.clone());
self.add_binding(decl.id.name.clone(), KindFlags::Type);
}
Declaration::TSEnumDeclaration(decl) => {
self.add_value_binding(decl.id.name.clone());
self.add_type_binding(decl.id.name.clone());
self.add_binding(decl.id.name.clone(), KindFlags::All);
}
Declaration::TSModuleDeclaration(decl) => {
if let TSModuleDeclarationName::Identifier(ident) = &decl.id {
self.add_value_binding(ident.name.clone());
self.add_type_binding(ident.name.clone());
self.add_binding(ident.name.clone(), KindFlags::All);
}
}
Declaration::TSImportEqualsDeclaration(decl) => {
self.add_value_binding(decl.id.name.clone());
self.add_binding(decl.id.name.clone(), KindFlags::Value);
}
}
walk_declaration(self, declaration);
Expand Down