Skip to content

Commit 14c0ee9

Browse files
authored
Update gen.rs
1 parent fde9d3c commit 14c0ee9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/bin/gen.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ impl Grammar {
4545
// enum SyntaxKind
4646
acc.push_str("/// The kind of syntax node, e.g. `IDENT`, `USE_KW`, or `STRUCT_DEF`.\n");
4747
acc.push_str("#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]\n");
48-
acc.push_str("#[repr(u32)]\n");
4948
acc.push_str("pub enum SyntaxKind {\n");
5049
for kind in syntax_kinds.iter() {
5150
write!(acc, " {},\n", scream(kind)).unwrap();

0 commit comments

Comments
 (0)