feat(languages): golang comments and numeric types (#9525)

pull/9544/head
Matouš Dzivjak 5 months ago committed by GitHub
parent 5c567f31e2
commit 0975d9c5e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -183,9 +183,12 @@
[ [
(int_literal) (int_literal)
] @constant.numeric.integer
[
(float_literal) (float_literal)
(imaginary_literal) (imaginary_literal)
] @constant.numeric.integer ] @constant.numeric.float
[ [
(true) (true)
@ -197,4 +200,31 @@
(iota) (iota)
] @constant.builtin ] @constant.builtin
; Comments
(comment) @comment (comment) @comment
; Doc Comments
(source_file
.
(comment)+ @comment.block.documentation)
(source_file
(comment)+ @comment.block.documentation
.
(const_declaration))
(source_file
(comment)+ @comment.block.documentation
.
(function_declaration))
(source_file
(comment)+ @comment.block.documentation
.
(type_declaration))
(source_file
(comment)+ @comment.block.documentation
.
(var_declaration))

Loading…
Cancel
Save