Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: make fields public in token macro implementation #4

Merged
merged 1 commit into from
Nov 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lachs_derive/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn impl_token_macro(item: syn::Item, attrs: Punctuated<Ident, Comma>) -> Tok
let (fields, insertions) = if *attr_ident == "terminal" {
(
quote! {
position: lachs::Span,
pub position: lachs::Span,
},
{
let literal = literal.value();
Expand All @@ -45,8 +45,8 @@ pub fn impl_token_macro(item: syn::Item, attrs: Punctuated<Ident, Comma>) -> Tok
} else if *attr_ident == "literal" {
(
quote! {
position: lachs::Span,
value: String,
pub position: lachs::Span,
pub value: String,
},
{
let literal = literal.value();
Expand Down
Loading