Squishing bugs.

This commit is contained in:
Jesse Brault 2025-09-24 14:23:14 -05:00
parent 12c565d0e1
commit 39e9c2ddd5
2 changed files with 6 additions and 6 deletions

View File

@ -1,10 +1,10 @@
use crate::deserialize::util::make_build_pair;
use crate::deserialize::util::{make_build_fn_name, make_build_pair};
use crate::spec::node_production_spec::NodeProductionBuildSpec;
use proc_macro2::TokenStream;
use quote::{format_ident, quote};
pub fn make_node_production_build_fn(spec: &NodeProductionBuildSpec) -> TokenStream {
let build_fn_ident = format_ident!("{}", spec.with());
let build_fn_ident = format_ident!("{}", make_build_fn_name(spec.name()));
let pair_ident = format_ident!("{}", make_build_pair(spec.name()));
let return_type_ident = format_ident!("{}", spec.kind());
let inner_build_fn_ident = format_ident!("{}", spec.with());

View File

@ -1041,7 +1041,7 @@ PrimaryExpression:
- Closure:
inner:
kind: Closure
- ListExpression:
- List:
inner:
kind: ListExpression
- ParenthesizedExpression:
@ -1052,9 +1052,9 @@ ListExpression:
children:
- expression_list
ParenthesizedExpression:
struct:
children:
- expression
node_production:
kind: Expression
with: Expression
# Calls
Call: