Skip to content

Commit c16088d

Browse files
committed
Move function call from rval to lval expression
1 parent 639510a commit c16088d

File tree

8 files changed

+4770
-4743
lines changed

8 files changed

+4770
-4743
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-sitter-inference"
33
description = "Inference grammar for tree-sitter"
4-
version = "0.0.36"
4+
version = "0.0.37"
55
authors = [
66
"Georgii Plotnikov <[email protected]>"
77
]

Makefile

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grammar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,13 @@ module.exports = grammar({
154154
$._simple_name,
155155
$.member_access_expression,
156156
$.array_index_access_expression,
157+
$.function_call_expression,
157158
),
158159

159160
_non_lval_expression: $ => choice(
160161
$._literal,
161162
$.type_member_access_expression,
162163
$.binary_expression,
163-
$.function_call_expression,
164164
$.struct_expression,
165165
$.prefix_unary_expression,
166166
$.parenthesized_expression,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tree-sitter-inference",
3-
"version": "0.0.36",
3+
"version": "0.0.37",
44
"description": "Inference grammar for tree-sitter",
55
"main": "bindings/node",
66
"types": "bindings/node",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "tree-sitter-inference"
77
description = "Inference grammar for tree-sitter"
8-
version = "0.0.36"
8+
version = "0.0.37"
99
keywords = ["incremental", "parsing", "tree-sitter", "inference"]
1010
classifiers = [
1111
"Intended Audience :: Developers",

src/grammar.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/node-types.json

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)