#![allow(clippy::wildcard_imports, clippy::enum_glob_use)]
use super::*;
impl Checker for TypescriptCode {
fn is_comment(node: &Node) -> bool {
matches!(
node.kind_id().into(),
Typescript::Comment | Typescript::HtmlComment
)
}
fn is_func_space(node: &Node) -> bool {
matches!(
node.kind_id().into(),
Typescript::Program
| Typescript::FunctionExpression
| Typescript::Class
| Typescript::GeneratorFunction
| Typescript::FunctionDeclaration
| Typescript::MethodDefinition
| Typescript::GeneratorFunctionDeclaration
| Typescript::ClassDeclaration
| Typescript::AbstractClassDeclaration
| Typescript::InterfaceDeclaration
| Typescript::ArrowFunction
)
}
is_js_func_and_closure_checker!(Typescript);
fn is_call(node: &Node) -> bool {
node.kind_id() == Typescript::CallExpression
}
fn is_non_arg(node: &Node) -> bool {
matches!(
node.kind_id().into(),
Typescript::LPAREN | Typescript::COMMA | Typescript::RPAREN
)
}
impl_js_family_is_string!(Typescript);
impl_is_else_if_parent_clause!(Typescript, IfStatement, ElseClause);
#[inline]
fn is_primitive(node: &Node) -> bool {
node.kind_id() == Typescript::PredefinedType
}
}