pub enum AnyJsImportSpecifierLike {
JsModuleSource(JsModuleSource),
JsCallExpression(JsCallExpression),
JsImportCallExpression(JsImportCallExpression),
}Expand description
This node union is meant to match the following syntax:
import "lodash";
// ^^^^^^^^
require("lodash")
// ^^^^^^^^^^^^^^^^^
import("lodash")
// ^^^^^^^^^^^^^^^^
Variants§
JsModuleSource(JsModuleSource)
JsCallExpression(JsCallExpression)
JsImportCallExpression(JsImportCallExpression)
Implementations§
source§impl AnyJsImportSpecifierLike
impl AnyJsImportSpecifierLike
sourcepub fn inner_string_text(&self) -> Option<TokenText>
pub fn inner_string_text(&self) -> Option<TokenText>
Returns the inner text of specifier:
§Examples
use biome_js_factory::make;
use biome_js_syntax::AnyJsImportSpecifierLike;
use biome_rowan::TriviaPieceKind;
let source_name = make::js_module_source(make::js_string_literal("foo"));
let any_import_specifier = AnyJsImportSpecifierLike::JsModuleSource(source_name);
assert_eq!(any_import_specifier.inner_string_text().unwrap().text(), "foo")sourcepub fn module_name_token(&self) -> Option<JsSyntaxToken>
pub fn module_name_token(&self) -> Option<JsSyntaxToken>
Returns the whole token text of the specifier, with quotes included:
§Examples
use biome_js_factory::make;
use biome_js_syntax::AnyJsImportSpecifierLike;
use biome_rowan::TriviaPieceKind;
let source_name = make::js_module_source(make::js_string_literal("foo"));
let any_import_specifier = AnyJsImportSpecifierLike::JsModuleSource(source_name);
assert_eq!(any_import_specifier.module_name_token().unwrap().text(), "\"foo\"")Trait Implementations§
source§impl AstNode for AnyJsImportSpecifierLike
impl AstNode for AnyJsImportSpecifierLike
type Language = <(JsModuleSource, JsCallExpression, JsImportCallExpression) as UnionLanguage>::Language
const KIND_SET: SyntaxKindSet<Self::Language> = _
source§fn can_cast(kind: <Self::Language as Language>::Kind) -> bool
fn can_cast(kind: <Self::Language as Language>::Kind) -> bool
Returns
true if a node with the given kind can be cased to this AST node.source§fn cast(syntax: SyntaxNode<Self::Language>) -> Option<Self>where
Self: Sized,
fn cast(syntax: SyntaxNode<Self::Language>) -> Option<Self>where
Self: Sized,
Tries to cast the passed syntax node to this AST node. Read more
source§fn syntax(&self) -> &SyntaxNode<Self::Language>
fn syntax(&self) -> &SyntaxNode<Self::Language>
Returns the underlying syntax node.
source§fn into_syntax(self) -> SyntaxNode<Self::Language>
fn into_syntax(self) -> SyntaxNode<Self::Language>
Returns the underlying syntax node.
source§fn cast_ref(syntax: &SyntaxNode<Self::Language>) -> Option<Self>where
Self: Sized,
fn cast_ref(syntax: &SyntaxNode<Self::Language>) -> Option<Self>where
Self: Sized,
Takes a reference of a syntax node and tries to cast it to this AST node. Read more
source§fn try_cast(
syntax: SyntaxNode<Self::Language>
) -> Result<Self, SyntaxNode<Self::Language>>
fn try_cast( syntax: SyntaxNode<Self::Language> ) -> Result<Self, SyntaxNode<Self::Language>>
Tries to cast the passed syntax node to this AST node. Read more
source§fn try_cast_node<T>(node: T) -> Result<Self, T>
fn try_cast_node<T>(node: T) -> Result<Self, T>
Tries to cast the AST
node into this node. Read moresource§fn unwrap_cast(syntax: SyntaxNode<Self::Language>) -> Selfwhere
Self: Sized,
fn unwrap_cast(syntax: SyntaxNode<Self::Language>) -> Selfwhere
Self: Sized,
Cast this node to this AST node Read more
source§fn text(&self) -> String
fn text(&self) -> String
Returns the string representation of this node without the leading and trailing trivia
fn range(&self) -> TextRange
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
fn parent<T>(&self) -> Option<T>
source§fn with_leading_trivia_pieces<I>(self, trivia: I) -> Option<Self>where
I: IntoIterator<Item = SyntaxTriviaPiece<Self::Language>>,
<I as IntoIterator>::IntoIter: ExactSizeIterator,
fn with_leading_trivia_pieces<I>(self, trivia: I) -> Option<Self>where
I: IntoIterator<Item = SyntaxTriviaPiece<Self::Language>>,
<I as IntoIterator>::IntoIter: ExactSizeIterator,
Return a new version of this node with the leading trivia of its first token replaced with
trivia.source§fn with_trailing_trivia_pieces<I>(self, trivia: I) -> Option<Self>where
I: IntoIterator<Item = SyntaxTriviaPiece<Self::Language>>,
<I as IntoIterator>::IntoIter: ExactSizeIterator,
fn with_trailing_trivia_pieces<I>(self, trivia: I) -> Option<Self>where
I: IntoIterator<Item = SyntaxTriviaPiece<Self::Language>>,
<I as IntoIterator>::IntoIter: ExactSizeIterator,
Return a new version of this node with the trailing trivia of its last token replaced with
trivia.fn prepend_trivia_pieces<I>(self, trivia: I) -> Option<Self>where
I: IntoIterator<Item = SyntaxTriviaPiece<Self::Language>>,
<I as IntoIterator>::IntoIter: ExactSizeIterator,
fn append_trivia_pieces<I>(self, trivia: I) -> Option<Self>where
I: IntoIterator<Item = SyntaxTriviaPiece<Self::Language>>,
<I as IntoIterator>::IntoIter: ExactSizeIterator,
source§fn trim_trivia(self) -> Option<Self>
fn trim_trivia(self) -> Option<Self>
Return a new version of this node without leading and trailing newlines and whitespaces.
source§fn trim_leading_trivia(self) -> Option<Self>
fn trim_leading_trivia(self) -> Option<Self>
Return a new version of this node without leading newlines and whitespaces.
source§fn trim_trailing_trivia(self) -> Option<Self>
fn trim_trailing_trivia(self) -> Option<Self>
Return a new version of this node without trailing newlines and whitespaces.
source§impl Clone for AnyJsImportSpecifierLike
impl Clone for AnyJsImportSpecifierLike
source§fn clone(&self) -> AnyJsImportSpecifierLike
fn clone(&self) -> AnyJsImportSpecifierLike
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AnyJsImportSpecifierLike
impl Debug for AnyJsImportSpecifierLike
source§impl Display for AnyJsImportSpecifierLike
impl Display for AnyJsImportSpecifierLike
source§impl From<AnyJsImportSpecifierLike> for SyntaxElement<<AnyJsImportSpecifierLike as AstNode>::Language>
impl From<AnyJsImportSpecifierLike> for SyntaxElement<<AnyJsImportSpecifierLike as AstNode>::Language>
source§fn from(
n: AnyJsImportSpecifierLike
) -> SyntaxElement<<AnyJsImportSpecifierLike as AstNode>::Language>
fn from( n: AnyJsImportSpecifierLike ) -> SyntaxElement<<AnyJsImportSpecifierLike as AstNode>::Language>
Converts to this type from the input type.
source§impl From<AnyJsImportSpecifierLike> for SyntaxNode<<AnyJsImportSpecifierLike as AstNode>::Language>
impl From<AnyJsImportSpecifierLike> for SyntaxNode<<AnyJsImportSpecifierLike as AstNode>::Language>
source§fn from(
n: AnyJsImportSpecifierLike
) -> SyntaxNode<<AnyJsImportSpecifierLike as AstNode>::Language>
fn from( n: AnyJsImportSpecifierLike ) -> SyntaxNode<<AnyJsImportSpecifierLike as AstNode>::Language>
Converts to this type from the input type.
source§impl From<JsCallExpression> for AnyJsImportSpecifierLike
impl From<JsCallExpression> for AnyJsImportSpecifierLike
source§fn from(node: JsCallExpression) -> Self
fn from(node: JsCallExpression) -> Self
Converts to this type from the input type.
source§impl From<JsImportCallExpression> for AnyJsImportSpecifierLike
impl From<JsImportCallExpression> for AnyJsImportSpecifierLike
source§fn from(node: JsImportCallExpression) -> Self
fn from(node: JsImportCallExpression) -> Self
Converts to this type from the input type.
source§impl From<JsModuleSource> for AnyJsImportSpecifierLike
impl From<JsModuleSource> for AnyJsImportSpecifierLike
source§fn from(node: JsModuleSource) -> Self
fn from(node: JsModuleSource) -> Self
Converts to this type from the input type.
source§impl Hash for AnyJsImportSpecifierLike
impl Hash for AnyJsImportSpecifierLike
source§impl PartialEq for AnyJsImportSpecifierLike
impl PartialEq for AnyJsImportSpecifierLike
source§fn eq(&self, other: &AnyJsImportSpecifierLike) -> bool
fn eq(&self, other: &AnyJsImportSpecifierLike) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for AnyJsImportSpecifierLike
impl StructuralPartialEq for AnyJsImportSpecifierLike
Auto Trait Implementations§
impl Freeze for AnyJsImportSpecifierLike
impl RefUnwindSafe for AnyJsImportSpecifierLike
impl !Send for AnyJsImportSpecifierLike
impl !Sync for AnyJsImportSpecifierLike
impl Unpin for AnyJsImportSpecifierLike
impl UnwindSafe for AnyJsImportSpecifierLike
Blanket Implementations§
source§impl<T> AstNodeExt for Twhere
T: AstNode,
impl<T> AstNodeExt for Twhere
T: AstNode,
source§fn replace_node_discard_trivia<N>(self, prev_node: N, next_node: N) -> Option<T>
fn replace_node_discard_trivia<N>(self, prev_node: N, next_node: N) -> Option<T>
source§fn replace_node<N>(self, prev_node: N, next_node: N) -> Option<T>
fn replace_node<N>(self, prev_node: N, next_node: N) -> Option<T>
Return a new version of this node with the node
prev_node replaced with next_node,
transfering the leading and trailing trivia of prev_node to next_node Read moresource§fn replace_token_discard_trivia(
self,
prev_token: SyntaxToken<<T as AstNode>::Language>,
next_token: SyntaxToken<<T as AstNode>::Language>
) -> Option<T>
fn replace_token_discard_trivia( self, prev_token: SyntaxToken<<T as AstNode>::Language>, next_token: SyntaxToken<<T as AstNode>::Language> ) -> Option<T>
source§fn replace_token(
self,
prev_token: SyntaxToken<<T as AstNode>::Language>,
next_token: SyntaxToken<<T as AstNode>::Language>
) -> Option<T>
fn replace_token( self, prev_token: SyntaxToken<<T as AstNode>::Language>, next_token: SyntaxToken<<T as AstNode>::Language> ) -> Option<T>
Return a new version of this node with the token
prev_token replaced with next_token,
transfering the leading and trailing trivia of prev_token to next_token Read morefn detach(self) -> T
source§impl<L, T> BatchMutationExt<L> for T
impl<L, T> BatchMutationExt<L> for T
source§fn begin(self) -> BatchMutation<L>
fn begin(self) -> BatchMutation<L>
It starts a BatchMutation
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.