()
| 1040 | } |
| 1041 | |
| 1042 | func (fc *functionCollector) toSlice() []string { |
| 1043 | result := make([]string, 0, len(fc.functions)) |
| 1044 | for function := range fc.functions { |
| 1045 | result = append(result, function) |
| 1046 | } |
| 1047 | return result |
| 1048 | } |
| 1049 | |
| 1050 | // ExtractMetadata extracts comprehensive metadata from an AST in a single call. |
| 1051 | // |