#![allow(
clippy::enum_glob_use,
clippy::too_many_lines,
clippy::wildcard_imports
)]
#![allow(
clippy::cast_precision_loss,
clippy::cast_possible_truncation,
clippy::cast_sign_loss
)]
use super::{Abc, DeclKind, Stats};
use crate::macros::{
javascript_bool_terminal_kinds, mozjs_bool_terminal_kinds, tsx_bool_terminal_kinds,
typescript_bool_terminal_kinds,
};
use crate::*;
macro_rules! impl_js_family_unary_walker {
($Lang:ident, $inspect:ident, $count:ident, $terminals:path) => {
fn $inspect(container_node: &Node, conditions: &mut f64) {
use $Lang::*;
let mut node = *container_node;
let mut node_kind = node.kind_id().into();
let Some(parent) = node.parent() else { return };
let parent_kind = parent.kind_id().into();
let mut has_boolean_content = matches!(
parent_kind,
BinaryExpression | IfStatement | WhileStatement | DoStatement | ForStatement
) || (matches!(parent_kind, TernaryExpression)
&& node
.previous_sibling()
.is_none_or(|prev| !matches!(prev.kind_id().into(), QMARK | COLON)));
loop {
let is_parens = matches!(node_kind, ParenthesizedExpression);
let is_not = matches!(node_kind, UnaryExpression)
&& node.child(0).is_some_and(|c| c.kind_id() == BANG as u16);
if !is_parens && !is_not {
break;
}
if !has_boolean_content && is_not {
has_boolean_content = true;
}
let Some(child) = node.child(1) else { break };
node = child;
node_kind = node.kind_id().into();
if matches!(node_kind, $terminals!()) {
if has_boolean_content {
*conditions += 1.;
}
break;
}
}
}
fn $count(list_node: &Node, conditions: &mut f64) {
use $Lang::*;
let list_kind = list_node.kind_id().into();
let mut cursor = list_node.cursor();
if cursor.goto_first_child() {
loop {
let node = cursor.node();
let node_kind = node.kind_id().into();
if matches!(node_kind, $terminals!()) && matches!(list_kind, BinaryExpression) {
*conditions += 1.;
} else if node.is_named() {
$inspect(&node, conditions);
}
if !cursor.goto_next_sibling() {
break;
}
}
}
}
};
}
impl_js_family_unary_walker!(
Typescript,
typescript_inspect_container,
typescript_count_unary_conditions,
typescript_bool_terminal_kinds
);
impl_js_family_unary_walker!(
Tsx,
tsx_inspect_container,
tsx_count_unary_conditions,
tsx_bool_terminal_kinds
);
impl_js_family_unary_walker!(
Javascript,
javascript_inspect_container,
javascript_count_unary_conditions,
javascript_bool_terminal_kinds
);
impl_js_family_unary_walker!(
Mozjs,
mozjs_inspect_container,
mozjs_count_unary_conditions,
mozjs_bool_terminal_kinds
);
macro_rules! ts_abc_compute {
($lang:ident, $count_unary:path, $inspect_container:path) => {
fn compute<'a>(node: &Node<'a>, _code: &'a [u8], stats: &mut Stats) {
use $lang::*;
match node.kind_id().into() {
PLUSEQ | DASHEQ | STAREQ | SLASHEQ | PERCENTEQ | STARSTAREQ | AMPEQ | PIPEEQ
| CARETEQ | LTLTEQ | GTGTEQ | GTGTGTEQ | AMPAMPEQ | PIPEPIPEEQ | QMARKQMARKEQ
| PLUSPLUS | DASHDASH => {
stats.assignments += 1.;
}
LexicalDeclaration | VariableDeclaration => {
stats.declaration.push(DeclKind::Var);
}
Const => {
if let Some(DeclKind::Var) = stats.declaration.last() {
stats.declaration.push(DeclKind::Const);
}
}
SEMI => {
if let Some(DeclKind::Const | DeclKind::Var) = stats.declaration.last() {
stats.declaration.clear();
}
}
EQ if !matches!(stats.declaration.last(), Some(DeclKind::Const)) => {
stats.assignments += 1.;
}
CallExpression | NewExpression => {
stats.branches += 1.;
}
EQEQ | EQEQEQ | BANGEQ | BANGEQEQ | LTEQ | GTEQ | QMARK | QMARKQMARK
| Instanceof | Else | Case | Try | Catch => {
stats.conditions += 1.;
}
GT | LT
if node.parent().is_some_and(|p| {
!matches!(p.kind_id().into(), TypeArguments | TypeParameters)
}) =>
{
stats.conditions += 1.;
}
AMPAMP | PIPEPIPE => {
if let Some(parent) = node.parent() {
$count_unary(&parent, &mut stats.conditions);
}
}
IfStatement | WhileStatement => {
if let Some(cond) = node.child(1) {
$inspect_container(&cond, &mut stats.conditions);
}
}
DoStatement => {
if let Some(cond) = node.child(3) {
$inspect_container(&cond, &mut stats.conditions);
}
}
ReturnStatement => {
if let Some(value) = node.child(1) {
$inspect_container(&value, &mut stats.conditions);
}
}
Arguments => {
$count_unary(node, &mut stats.conditions);
}
_ => {}
}
}
};
}
impl Abc for TypescriptCode {
ts_abc_compute!(
Typescript,
typescript_count_unary_conditions,
typescript_inspect_container
);
}
impl Abc for TsxCode {
ts_abc_compute!(Tsx, tsx_count_unary_conditions, tsx_inspect_container);
}
macro_rules! js_abc_compute {
($lang:ident, $count_unary:path, $inspect_container:path) => {
fn compute<'a>(node: &Node<'a>, _code: &'a [u8], stats: &mut Stats) {
use $lang::*;
match node.kind_id().into() {
PLUSEQ | DASHEQ | STAREQ | SLASHEQ | PERCENTEQ | STARSTAREQ | AMPEQ | PIPEEQ
| CARETEQ | LTLTEQ | GTGTEQ | GTGTGTEQ | AMPAMPEQ | PIPEPIPEEQ | QMARKQMARKEQ
| PLUSPLUS | DASHDASH => {
stats.assignments += 1.;
}
LexicalDeclaration | VariableDeclaration => {
stats.declaration.push(DeclKind::Var);
}
Const => {
if let Some(DeclKind::Var) = stats.declaration.last() {
stats.declaration.push(DeclKind::Const);
}
}
SEMI => {
if let Some(DeclKind::Const | DeclKind::Var) = stats.declaration.last() {
stats.declaration.clear();
}
}
EQ if !matches!(stats.declaration.last(), Some(DeclKind::Const)) => {
stats.assignments += 1.;
}
CallExpression | NewExpression => {
stats.branches += 1.;
}
EQEQ | EQEQEQ | BANGEQ | BANGEQEQ | LTEQ | GTEQ | LT | GT | QMARK | QMARKQMARK
| Instanceof | Else | Case | Try | Catch => {
stats.conditions += 1.;
}
AMPAMP | PIPEPIPE => {
if let Some(parent) = node.parent() {
$count_unary(&parent, &mut stats.conditions);
}
}
IfStatement | WhileStatement => {
if let Some(cond) = node.child(1) {
$inspect_container(&cond, &mut stats.conditions);
}
}
DoStatement => {
if let Some(cond) = node.child(3) {
$inspect_container(&cond, &mut stats.conditions);
}
}
ReturnStatement => {
if let Some(value) = node.child(1) {
$inspect_container(&value, &mut stats.conditions);
}
}
Arguments => {
$count_unary(node, &mut stats.conditions);
}
_ => {}
}
}
};
}
impl Abc for JavascriptCode {
js_abc_compute!(
Javascript,
javascript_count_unary_conditions,
javascript_inspect_container
);
}
impl Abc for MozjsCode {
js_abc_compute!(Mozjs, mozjs_count_unary_conditions, mozjs_inspect_container);
}