-
-
Notifications
You must be signed in to change notification settings - Fork 502
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 07-21-perf_semantic_use_atom_instead_of_comp…
…actstr_for_unresolved_references
- Loading branch information
Showing
8 changed files
with
150 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
//! Visitor to count nodes, scopes, symbols and references in AST. | ||
//! These counts can be used to pre-allocate sufficient capacity in `AstNodes`, | ||
//! `ScopeTree`, and `SymbolTable` to store info for all these items. | ||
use std::cell::Cell; | ||
|
||
use oxc_ast::{ | ||
ast::{ | ||
BindingIdentifier, IdentifierReference, JSXElementName, JSXMemberExpressionObject, | ||
TSEnumMemberName, TSModuleDeclarationName, | ||
}, | ||
visit::walk::{walk_ts_enum_member_name, walk_ts_module_declaration_name}, | ||
AstKind, Visit, | ||
}; | ||
use oxc_syntax::scope::{ScopeFlags, ScopeId}; | ||
|
||
#[allow(clippy::struct_field_names)] | ||
#[derive(Default, Debug)] | ||
pub struct Counter { | ||
pub nodes_count: usize, | ||
pub scopes_count: usize, | ||
pub symbols_count: usize, | ||
pub references_count: usize, | ||
} | ||
|
||
impl<'a> Visit<'a> for Counter { | ||
#[inline] | ||
fn enter_node(&mut self, _: AstKind<'a>) { | ||
self.nodes_count += 1; | ||
} | ||
#[inline] | ||
fn enter_scope(&mut self, _: ScopeFlags, _: &Cell<Option<ScopeId>>) { | ||
self.scopes_count += 1; | ||
} | ||
|
||
#[inline] | ||
fn visit_binding_identifier(&mut self, _: &BindingIdentifier<'a>) { | ||
self.nodes_count += 1; | ||
self.symbols_count += 1; | ||
} | ||
|
||
#[inline] | ||
fn visit_identifier_reference(&mut self, _: &IdentifierReference<'a>) { | ||
self.nodes_count += 1; | ||
self.references_count += 1; | ||
} | ||
|
||
#[inline] | ||
fn visit_jsx_member_expression_object(&mut self, it: &JSXMemberExpressionObject<'a>) { | ||
self.nodes_count += 1; | ||
match it { | ||
JSXMemberExpressionObject::MemberExpression(expr) => { | ||
self.visit_jsx_member_expression(expr); | ||
} | ||
JSXMemberExpressionObject::Identifier(_) => { | ||
self.nodes_count += 1; | ||
self.references_count += 1; | ||
} | ||
} | ||
} | ||
|
||
#[inline] | ||
fn visit_jsx_element_name(&mut self, it: &JSXElementName<'a>) { | ||
self.nodes_count += 1; | ||
match it { | ||
JSXElementName::Identifier(ident) => { | ||
self.nodes_count += 1; | ||
if ident.name.chars().next().is_some_and(char::is_uppercase) { | ||
self.references_count += 1; | ||
} | ||
} | ||
JSXElementName::NamespacedName(name) => self.visit_jsx_namespaced_name(name), | ||
JSXElementName::MemberExpression(expr) => self.visit_jsx_member_expression(expr), | ||
} | ||
} | ||
|
||
#[inline] | ||
fn visit_ts_enum_member_name(&mut self, it: &TSEnumMemberName<'a>) { | ||
if !it.is_expression() { | ||
self.symbols_count += 1; | ||
} | ||
walk_ts_enum_member_name(self, it); | ||
} | ||
|
||
#[inline] | ||
fn visit_ts_module_declaration_name(&mut self, it: &TSModuleDeclarationName<'a>) { | ||
self.symbols_count += 1; | ||
walk_ts_module_declaration_name(self, it); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ mod binder; | |
mod builder; | ||
mod checker; | ||
mod class; | ||
mod counter; | ||
mod diagnostics; | ||
mod jsdoc; | ||
mod label; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters