We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
JSXText({value})
debug_name()
1 parent 5856bc9 commit 368829bCopy full SHA for 368829b
crates/oxc_ast/src/ast_kind_impl.rs
@@ -466,7 +466,7 @@ impl AstKind<'_> {
466
Self::JSXSpreadChild(_) => "JSXSpreadChild".into(),
467
Self::JSXAttribute(_) => "JSXAttribute".into(),
468
Self::JSXSpreadAttribute(_) => "JSXSpreadAttribute".into(),
469
- Self::JSXText(_) => "JSXText".into(),
+ Self::JSXText(t) => format!("JSXText({})", t.value).into(),
470
Self::JSXExpressionContainer(_) => "JSXExpressionContainer".into(),
471
Self::JSXIdentifier(id) => format!("JSXIdentifier({id})").into(),
472
Self::JSXMemberExpression(_) => "JSXMemberExpression".into(),
0 commit comments