-
Notifications
You must be signed in to change notification settings - Fork 39
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
Resolved issue caused from bad merge #68
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
; -------------------- | ||
(super) @function | ||
|
||
; TODO: add method/call_expression to grammar and | ||
; distinguish method call from variable access | ||
(function_expression_body | ||
(identifier) @function) | ||
|
||
|
@@ -99,10 +97,6 @@ | |
(identifier) @function) | ||
(setter_signature | ||
name: (identifier) @function) | ||
(enum_declaration | ||
name: (identifier) @type) | ||
(enum_constant | ||
name: (identifier) @method) | ||
Comment on lines
-102
to
-105
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These were duplicated, actual definition is lower: https://github.com/UserNobody14/tree-sitter-dart/pull/68/files#diff-d485a982e458ef8da2cc203585065b7542665cb80b78d230b1e8f77ea25825d4L117 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks didn't notice the move |
||
(type_identifier) @type | ||
|
||
((scoped_identifier | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was resolved in #65, just cleaning up the comment accordingly