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

feat: add Solidity language support #665

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Changes from 4 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
175 changes: 175 additions & 0 deletions queries/solidity/textobjects.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
; Solidity textobjects
; Functions
(function_definition
body: (_)) @function.outer

(function_definition
body: (_
.
"{"
.
(_) @_start @_end
(_)? @_end
.
"}"
(#make-range! "function.inner" @_start @_end)))

; Constructors
(constructor_definition
body: (_)) @function.outer

(constructor_definition
body: (_
.
"{"
.
(_) @_start @_end
(_)? @_end
.
"}"
(#make-range! "function.inner" @_start @_end)))

; Modifiers
(modifier_definition
body: (_)) @function.outer

(modifier_definition
body: (_
.
"{"
.
(_) @_start @_end
(_)? @_end
.
"}"
(#make-range! "function.inner" @_start @_end)))

; Contracts
(contract_declaration
body: (_) @class.inner) @class.outer

; Interfaces
(interface_declaration
body: (_) @class.inner) @class.outer

; Libraries
(library_declaration
body: (_) @class.inner) @class.outer

; Structs
(struct_declaration
body: (_) @class.inner) @class.outer

; Loops
(for_statement
body: (_
.
"{"
.
(_) @_start @_end
(_)? @_end
.
"}"
(#make-range! "loop.inner" @_start @_end))) @loop.outer

(while_statement
body: (_
.
"{"
.
(_) @_start @_end
(_)? @_end
.
"}"
(#make-range! "loop.inner" @_start @_end))) @loop.outer

; Conditionals
(if_statement
consequence: (_
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where are you getting this node from? It's not in the grammar.

.
"{"
.
(_) @_start @_end
(_)? @_end
.
"}"
(#make-range! "conditional.inner" @_start @_end))) @conditional.outer

(if_statement
alternative: (else_clause
(_
.
"{"
.
(_) @_start @_end
(_)? @_end
.
"}"
(#make-range! "conditional.inner" @_start @_end)))) @conditional.outer

(if_statement) @conditional.outer

; Function calls
(call_expression) @call.outer

(call_expression
arguments: (call_arguments
.
"("
.
(_) @_start
(_)? @_end
.
")"
(#make-range! "call.inner" @_start @_end)))

; Blocks
(_
(_) @block.inner) @block.outer

; Parameters
(parameter_list
","? @_start
.
(_) @parameter.inner
(#make-range! "parameter.outer" @_start @parameter.inner))

(parameter_list
.
(_) @parameter.inner
.
","? @_end
(#make-range! "parameter.outer" @parameter.inner @_end))

; Arguments
(call_arguments
","? @_start
.
(_) @parameter.inner
(#make-range! "parameter.outer" @_start @parameter.inner))

(call_arguments
.
(_) @parameter.inner
.
","? @_end
(#make-range! "parameter.outer" @parameter.inner @_end))

; Comments
(comment) @comment.outer

; Variable declarations
(variable_declaration
name: (_) @assignment.lhs
value: (_) @assignment.inner @assignment.rhs) @assignment.outer

(variable_declaration
name: (_) @assignment.inner)

; State variable declarations
(state_variable_declaration
name: (_) @assignment.lhs
value: (_) @assignment.inner @assignment.rhs) @assignment.outer

(state_variable_declaration
name: (_) @assignment.inner)
Loading