Skip to content

Commit

Permalink
c# rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
urbit-pilled committed Dec 4, 2024
1 parent 7ed9e1f commit fd073c1
Show file tree
Hide file tree
Showing 8 changed files with 450,467 additions and 450,284 deletions.
Binary file modified crates/wasm-bindings/wasm_parsers/tree-sitter-c-sharp.wasm
Binary file not shown.
13 changes: 2 additions & 11 deletions resources/language-metavariables/tree-sitter-c-sharp/Cargo.lock

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

Original file line number Diff line number Diff line change
Expand Up @@ -1404,7 +1404,7 @@ module.exports = grammar({
_pointer_indirection_expression: ($) =>
prec.right(PREC.UNARY, seq("*", $.lvalue_expression)),

query_expression: ($) => seq(field("from", $.from_clause), field("query", $._query_body)),
query_expression: ($) => seq(field("from", $.from_clause), field("query", $.query_body)),

from_clause: ($) =>
seq(
Expand All @@ -1415,7 +1415,7 @@ module.exports = grammar({
field("expression", $.expression),
),

_query_body: ($) =>
query_body: ($) =>
prec.right(
sep1(
seq(repeat($._query_clause), $._select_or_group_clause),
Expand Down Expand Up @@ -1447,7 +1447,7 @@ module.exports = grammar({
order_by_clause: ($) => seq("orderby", commaSep1(field("ordering", $._ordering))),

_ordering: ($) =>
seq($.expression, optional(choice("ascending", "descending"))),
seq(field("expression", $.expression), optional(choice("ascending", "descending", $.grit_metavariable))),

where_clause: ($) => seq("where", field("expression", $.expression)),

Expand Down
Loading

0 comments on commit fd073c1

Please sign in to comment.