feat(comment): add support for: interface methods, struct fields, variables (#123)

* refactor(comment): dont use unnecessary function

* chore: quick way to open vim in dev mode

* feat(comment): add comment on on interface method

* feat(comment): add comment on a struct field

* feat(comment): add comment on a variable

* docs: add note about the generate function

* docs: gopher.TsResult

* fix(utils): handle case when indentation is wrong
This commit is contained in:
Oleksandr Smirnov 2025-09-04 16:52:18 +03:00 committed by GitHub
parent 295e21e637
commit 1e7af1b212
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 250 additions and 33 deletions

View file

@ -0,0 +1,18 @@
package main
type (
TestOne struct {
Asdf string
ID int
}
TestTwo struct {
Fesa int
A bool
}
TestThree struct {
Asufj int
Fs string
}
)