MCPcopy Create free account
hub / github.com/UNLINEARITY/Obsidian-CodeSpace / CodeSymbol

Interface CodeSymbol

src/code_parser.ts:4–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2
3// 代码符号接口
4export interface CodeSymbol {
5 name: string;
6 type: "function" | "class" | "method";
7 line: number;
8}
9
10// 解析代码文件,提取符号
11export function parseCodeSymbols(file: TFile, content: string): CodeSymbol[] {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected