We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36243aa commit a624220Copy full SHA for a624220
crates/cairo-lang-sierra/src/parser.lalrpop
@@ -99,7 +99,7 @@ TokenTree: String = {
99
<value:BracesTokenTree> => value,
100
<value:BracketsTokenTree> => value,
101
"(" <parts:(<TokenTree>)*> ")" => format!("({})", parts.join("")),
102
- <label:BasicLabel> => label.to_string(),
+ <label:BasicLabel> => label,
103
<num:BigInt> => num.to_string(),
104
":" => <>.to_string(),
105
"," => <>.to_string(),
0 commit comments