SYMBOL INDEX (46 symbols across 2 files) FILE: languages/golang.go function main (line 81) | func main() { // 主函数 constant d (line 115) | d = 1 function test (line 172) | func test() {} function get (line 177) | func get() (a,b string) { // 函数多返回值 type People (line 189) | type People struct type Foo (line 206) | type Foo struct method test (line 210) | func (f Foo) test() { method test (line 214) | func (f *Foo) test() { type Reader (line 243) | type Reader interface type As (line 247) | type As struct method Reading (line 248) | func (a As) Reading() {} type Bs (line 250) | type Bs struct method Reading (line 251) | func (b Bs) Reading() {} method Closing (line 252) | func (b Bs) Closing() {} function Sum (line 258) | func Sum[T int | float32 | float64](x, y T) T { type Number (line 262) | type Number interface type SliceAdditon (line 266) | type SliceAdditon struct method Sum (line 270) | func (sa *SliceAdditon[T]) Sum() T { function Caller (line 278) | func Caller() { FILE: languages/php.php class NormalClass (line 7) | class NormalClass extends AbstractClassName implements InterfaceName method publicFunction (line 45) | public function publicFunction(Type $var = null): Type method privateFunction (line 54) | private function privateFunction(Type $var = null): Type method protectedFunction (line 63) | protected function protectedFunction(Type $var = null): Type method staticFunction (line 72) | public static function staticFunction(Type $var = null): Type method __construct (line 84) | public function __construct(Type $var = null) method __destruct (line 93) | public function __destruct() method __set (line 104) | public function __set(string $name , mixed $value) method __get (line 114) | public function __get(string $name) method __isset (line 124) | public function __isset(string $name) method __unset (line 134) | public function __unset(string $name) method __call (line 145) | public function __call(string $name, array $arguments) method __callStatic (line 156) | public static function __callStatic(string $name, array $arguments) method __sleep (line 168) | public function __sleep() method __wakeup (line 178) | public function __wakeup() method __toString (line 189) | public function __toString() method __invoke (line 199) | public function __invoke(Type $var = null) method __set_state (line 209) | public static function __set_state(array $properties) method __debugInfo (line 218) | public function __debugInfo() type InterfaceName (line 228) | interface InterfaceName method FunctionName (line 231) | public function FunctionName(Type $var = null): Type; class AbstractClassName (line 239) | abstract class AbstractClassName method abstractFunction (line 247) | abstract function abstractFunction(Type $var = null): Type; type Logger (line 255) | trait Logger method log (line 257) | public function log($message) class WriteLog (line 263) | class WriteLog method main (line 267) | public function main()