Documentation ¶
Index ¶
- Variables
- func ASTGetTypeName(expr ast.Expr, fset *token.FileSet) string
- func CustomHandleTypeName(typName string) string
- func GetDeclAndCompletion(funcName string, params, results []*Field) (string, string)
- func GetProjectAstPackages() (map[string]*ast.Package, *token.FileSet, error)
- func GetProjectPath() string
- func GetTypeNameWithPkgPath(typ reflect.Type) (pkgPath string, pkgPathName string)
- func RegisterHook(hook func(h *DocumentHelper))
- func ShrinkTypeVerboseName(i string) string
- type CacheAstBundle
- type DeprecateFunction
- type DocumentHelper
- func (h *DocumentHelper) Callback()
- func (h *DocumentHelper) GetAllLibs() []string
- func (h *DocumentHelper) HelpInfo() string
- func (h *DocumentHelper) InjectInterfaceDocumentManually(interfacePath, sourceCodePath string) error
- func (h *DocumentHelper) LibFuncAutoCompletion(libName, funcName string) string
- func (h *DocumentHelper) LibFuncDefinitionStr(libName, funcName string) string
- func (h *DocumentHelper) LibFuncHelpInfo(libName, funcName string) string
- func (h *DocumentHelper) LibHelpInfo(name string) string
- func (h *DocumentHelper) ShowHelpInfo()
- func (h *DocumentHelper) ShowLibFuncHelpInfo(libName, funcName string)
- func (h *DocumentHelper) ShowLibHelpInfo(name string)
- type Field
- type FuncDecl
- type LibInstance
- type ScriptLib
Constants ¶
This section is empty.
Variables ¶
Functions ¶
func ASTGetTypeName ¶ added in v1.3.3
func CustomHandleTypeName ¶ added in v1.3.0
func GetDeclAndCompletion ¶ added in v1.2.9
func GetProjectAstPackages ¶ added in v1.2.9
func GetProjectPath ¶ added in v1.2.9
func GetProjectPath() string
func GetTypeNameWithPkgPath ¶ added in v1.3.3
func RegisterHook ¶ added in v1.2.9
func RegisterHook(hook func(h *DocumentHelper))
func ShrinkTypeVerboseName ¶ added in v1.2.9
rename native type
Types ¶
type CacheAstBundle ¶ added in v1.2.9
type CacheAstBundle struct {
// contains filtered or unexported fields
}
func GetCacheAstBundle ¶ added in v1.2.9
func GetCacheAstBundle(fileName string) (*CacheAstBundle, error)
type DeprecateFunction ¶ added in v1.3.1
type DocumentHelper ¶
type DocumentHelper struct { Libs map[string]*ScriptLib Functions map[string]*FuncDecl Instances map[string]*LibInstance StructMethods map[string]*ScriptLib // 结构体方法,名字 -> 所有结构体与结构体指针方法 DeprecatedFunctions []*DeprecateFunction // contains filtered or unexported fields }
func (*DocumentHelper) Callback ¶ added in v1.2.9
func (h *DocumentHelper) Callback()
func (*DocumentHelper) GetAllLibs ¶
func (h *DocumentHelper) GetAllLibs() []string
func (*DocumentHelper) HelpInfo ¶
func (h *DocumentHelper) HelpInfo() string
func (*DocumentHelper) InjectInterfaceDocumentManually ¶ added in v1.2.9
func (h *DocumentHelper) InjectInterfaceDocumentManually(interfacePath, sourceCodePath string) error
func (*DocumentHelper) LibFuncAutoCompletion ¶
func (h *DocumentHelper) LibFuncAutoCompletion(libName, funcName string) string
func (*DocumentHelper) LibFuncDefinitionStr ¶
func (h *DocumentHelper) LibFuncDefinitionStr(libName, funcName string) string
func (*DocumentHelper) LibFuncHelpInfo ¶
func (h *DocumentHelper) LibFuncHelpInfo(libName, funcName string) string
func (*DocumentHelper) LibHelpInfo ¶
func (h *DocumentHelper) LibHelpInfo(name string) string
func (*DocumentHelper) ShowHelpInfo ¶
func (h *DocumentHelper) ShowHelpInfo()
func (*DocumentHelper) ShowLibFuncHelpInfo ¶
func (h *DocumentHelper) ShowLibFuncHelpInfo(libName, funcName string)
func (*DocumentHelper) ShowLibHelpInfo ¶
func (h *DocumentHelper) ShowLibHelpInfo(name string)
type Field ¶ added in v1.2.7
func HandleFieldsRaw ¶ added in v1.2.9
func HandleParams ¶ added in v1.2.9
type FuncDecl ¶
type FuncDecl struct { LibName string MethodName string Document string Decl string Params []*Field Results []*Field VSCodeSnippets string }
func FuncToFuncDecl ¶
Get description and declaration of a func
type LibInstance ¶
func AnyTypeToLibInstance ¶
func AnyTypeToLibInstance(libName, name string, typ reflect.Type, value interface{}) *LibInstance
func (*LibInstance) String ¶
func (i *LibInstance) String() string
Click to show internal directories.
Click to hide internal directories.