8000 [tree_sitter_v] fix struct field by Lycs-D · Pull Request #74 · v-analyzer/v-analyzer · GitHub
[go: up one dir, main page]

Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[tree_sitter_v] fix struct field #74

Merged
merged 5 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
[tree_sitter_v] fix struct field
  • Loading branch information
Lycs-D committed Dec 11, 2023
commit dce5dd60442bfd7a1693589bf15702971f7b1a62
2 changes: 1 addition & 1 deletion tree_sitter_v/grammar.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -409,8 +409,8 @@ module.exports = grammar({
seq(
field("name", $.identifier),
field("type", $.plain_type),
optional(field("attributes", $.attribute)),
optional(seq("=", field("default_value", $._expression))),
optional(field("attributes", $.attribute)),
),
),

Expand Down
32 changes: 16 additions & 16 deletions tree_sitter_v/src/grammar.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
0