@@ -54,7 +54,7 @@ impl RawAttrs {
54
54
let span = span_map. span_for_range ( comment. syntax ( ) . text_range ( ) ) ;
55
55
Attr {
56
56
id,
57
- input : Some ( Interned :: new ( AttrInput :: Literal ( tt:: Literal {
57
+ input : Some ( Box :: new ( AttrInput :: Literal ( tt:: Literal {
58
58
text : SmolStr :: new ( format_smolstr ! ( "\" {}\" " , Self :: escape_chars( doc) ) ) ,
59
59
span,
60
60
} ) ) ) ,
@@ -199,7 +199,7 @@ impl AttrId {
199
199
pub struct Attr {
200
200
pub id : AttrId ,
201
201
pub path : Interned < ModPath > ,
202
- pub input : Option < Interned < AttrInput > > ,
202
+ pub input : Option < Box < AttrInput > > ,
203
203
pub ctxt : SyntaxContextId ,
204
204
}
205
205
@@ -234,7 +234,7 @@ impl Attr {
234
234
} ) ?) ;
235
235
let span = span_map. span_for_range ( range) ;
236
236
let input = if let Some ( ast:: Expr :: Literal ( lit) ) = ast. expr ( ) {
237
- Some ( Interned :: new ( AttrInput :: Literal ( tt:: Literal {
237
+ Some ( Box :: new ( AttrInput :: Literal ( tt:: Literal {
238
238
text : lit. token ( ) . text ( ) . into ( ) ,
239
239
span,
240
240
} ) ) )
@@ -245,7 +245,7 @@ impl Attr {
245
245
span,
246
246
DocCommentDesugarMode :: ProcMacro ,
247
247
) ;
248
- Some ( Interned :: new ( AttrInput :: TokenTree ( Box :: new ( tree) ) ) )
248
+ Some ( Box :: new ( AttrInput :: TokenTree ( Box :: new ( tree) ) ) )
249
249
} else {
250
250
None
251
251
} ;
@@ -281,12 +281,12 @@ impl Attr {
281
281
282
282
let input = match input. first ( ) {
283
283
Some ( tt:: TokenTree :: Subtree ( tree) ) => {
284
- Some ( Interned :: new ( AttrInput :: TokenTree ( Box :: new ( tree. clone ( ) ) ) ) )
284
+ Some ( Box :: new ( AttrInput :: TokenTree ( Box :: new ( tree. clone ( ) ) ) ) )
285
285
}
286
286
Some ( tt:: TokenTree :: Leaf ( tt:: Leaf :: Punct ( tt:: Punct { char : '=' , .. } ) ) ) => {
287
287
let input = match input. get ( 1 ) {
288
288
Some ( tt:: TokenTree :: Leaf ( tt:: Leaf :: Literal ( lit) ) ) => {
289
- Some ( Interned :: new ( AttrInput :: Literal ( lit. clone ( ) ) ) )
289
+ Some ( Box :: new ( AttrInput :: Literal ( lit. clone ( ) ) ) )
290
290
}
291
291
_ => None ,
292
292
} ;
0 commit comments