Remove header user code block group for Rust section

This commit is contained in:
Josh Holtrop 2026-08-14 23:39:02 -04:00
parent f902c835c9
commit 35c40f09fe
3 changed files with 2 additions and 5 deletions

View File

@ -16,9 +16,6 @@
* User code blocks * User code blocks
*************************************************************************/ *************************************************************************/
<% unless @grammar.code_blocks.fetch("header", "").empty? %>
<%= @grammar.code_blocks.fetch("header", "") %>
<% end %>
<%= @grammar.code_blocks.fetch("", "") %> <%= @grammar.code_blocks.fetch("", "") %>
/************************************************************************** /**************************************************************************

View File

@ -1,4 +1,4 @@
<<header <<
pub const JSON_OBJECT: usize = 0; pub const JSON_OBJECT: usize = 0;
pub const JSON_ARRAY: usize = 1; pub const JSON_ARRAY: usize = 1;
pub const JSON_NUMBER: usize = 2; pub const JSON_NUMBER: usize = 2;

View File

@ -1,7 +1,7 @@
tree; tree;
tree_prefix P; tree_prefix P;
<<header <<
#[derive(Clone, Default)] #[derive(Clone, Default)]
pub struct TokenVal { pub struct TokenVal {
pub i64_: u64, pub i64_: u64,