1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vdoc: highlight .., ... as punctuation & postfix ops as operators (#13924)

This commit is contained in:
Nick Treleaven
2022-04-04 07:21:54 +01:00
committed by GitHub
parent 1211b2e941
commit 91b40304b7
3 changed files with 11 additions and 4 deletions

View File

@@ -494,6 +494,11 @@ pub fn (kind Kind) is_infix() bool {
.right_shift, .unsigned_right_shift, .arrow]
}
[inline]
pub fn (kind Kind) is_postfix() bool {
return kind in [.inc, .dec, .question]
}
pub fn kind_to_string(k Kind) string {
return match k {
.unknown { 'unknown' }