Skip to content

Commit

Permalink
Merge pull request #321 from zarifpour/patch-1
Browse files Browse the repository at this point in the history
Add highlights for Solidity
  • Loading branch information
ful1e5 authored May 2, 2024
2 parents fe06e0b + 448d558 commit e2ec5a5
Showing 1 changed file with 217 additions and 0 deletions.
217 changes: 217 additions & 0 deletions queries/solidity/highlights.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,217 @@
; identifiers
; -----------
(identifier) @variable
(yul_identifier) @variable

; Pragma
(pragma_directive) @tag
(solidity_version_comparison_operator _ @tag)

; Literals
; --------

[
(string)
(hex_string_literal)
(unicode_string_literal)
(yul_string_literal)
] @string
[
(number_literal)
(yul_decimal_number)
(yul_hex_number)
] @number
[
(true)
(false)
] @constant.builtin

(comment) @comment

; Definitions and references
; -----------

(type_name) @type
(primitive_type) @type
(user_defined_type (identifier) @type)

(payable_conversion_expression "payable" @type)
; Ensures that delimiters in mapping( ... => .. ) are not colored like types
(type_name "(" @punctuation.bracket "=>" @punctuation.delimiter ")" @punctuation.bracket)

; Definitions
(struct_declaration
name: (identifier) @type)
(enum_declaration
name: (identifier) @type)
(contract_declaration
name: (identifier) @type)
(library_declaration
name: (identifier) @type)
(interface_declaration
name: (identifier) @type)
(event_definition
name: (identifier) @type)

(function_definition
name: (identifier) @function)

(modifier_definition
name: (identifier) @function)
(yul_evm_builtin) @function.builtin

; Use contructor coloring for special functions
(constructor_definition "constructor" @constructor)
(fallback_receive_definition "receive" @constructor)
(fallback_receive_definition "fallback" @constructor)

(struct_member name: (identifier) @property)
(enum_value) @constant

; Invocations
(emit_statement . (identifier) @type)
(modifier_invocation (identifier) @function)

(call_expression . (member_expression property: (identifier) @function.method))
(call_expression . (identifier) @function)

; Function parameters
(call_struct_argument name: (identifier) @field)
(event_paramater name: (identifier) @parameter)
(parameter name: (identifier) @variable.parameter)

; Yul functions
(yul_function_call function: (yul_identifier) @function)
(yul_function_definition . (yul_identifier) @function (yul_identifier) @parameter)


; Structs and members
(member_expression property: (identifier) @property)
(struct_expression type: ((identifier) @type .))
(struct_field_assignment name: (identifier) @property)


; Tokens
; -------

; Keywords
(meta_type_expression "type" @keyword)
; Keywords
[
"pragma"
"contract"
"interface"
"library"
"is"
"struct"
"enum"
"event"
"using"
"assembly"
"emit"
"public"
"internal"
"private"
"external"
"pure"
"view"
"payable"
"modifier"
"memory"
"storage"
"calldata"
"var"
"constant"
(virtual)
(override_specifier)
(yul_leave)
] @keyword

[
"for"
"while"
"do"
] @repeat

[
"break"
"continue"
"if"
"else"
"switch"
"case"
"default"
] @conditional

[
"try"
"catch"
] @exception

[
"return"
"returns"
] @keyword.return

"function" @keyword.function

"import" @include
(import_directive "as" @include)
(import_directive "from" @include)

(event_paramater "indexed" @keyword)

; Punctuation

[
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket


[
"."
","
] @punctuation.delimiter


; Operators

[
"&&"
"||"
">>"
">>>"
"<<"
"&"
"^"
"|"
"+"
"-"
"*"
"/"
"%"
"**"
"<"
"<="
"=="
"!="
"!=="
">="
">"
"!"
"~"
"-"
"+"
"++"
"--"
] @operator

[
"delete"
"new"
] @keyword.operator

0 comments on commit e2ec5a5

Please sign in to comment.