Documentation ¶ Index ¶ type Lang func (l Lang) Is(target Lang) bool func (l Lang) String() string type LangID Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Lang ¶ type Lang string const ( Any Lang = "any" // 代表全部语言 Java Lang = "java" Python Lang = "python" GoLang Lang = "golang" Ruby Lang = "ruby" Ebpf Lang = "ebpf" NodeJS Lang = "nodejs" DotNet Lang = "dotnet" PHP Lang = "php" Unknown Lang = "unknown" ) func (Lang) Is ¶ func (l Lang) Is(target Lang) bool func (Lang) String ¶ func (l Lang) String() string type LangID ¶ type LangID int const ( AnyID LangID = 1 << iota PythonID GolangID JavaID RubyID EbpfID NodeJSID DotNetID PhpID ) Source Files ¶ View all Source files lang.go Click to show internal directories. Click to hide internal directories.