タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

algorithmとvideoとGithubに関するefclのブックマーク (1)

  • "Incremental, zero-config Code Nav using stack graphs" by Douglas Creager

    Exploring a large or unfamiliar codebase can be tricky. Code Navigation features like “jump to definition” and “find all references” let you discover how different pieces of code relate to each other. To power these features, we need to extract lists of symbols from the code, and describe the language-specific rules for how those symbols relate to each other. It’s difficult to add Code Nav to a l

    "Incremental, zero-config Code Nav using stack graphs" by Douglas Creager
    efcl
    efcl 2022/05/01
    GitHubのコードナビゲーションの仕組み。 ファイルごとのindexをできるようにすることで、symbol検索のquery timeのバランスをとる。 index timeでfileごとのnode gprahとpartial pathsを作り、query timeでマージして検索。 言語のパースはtree
  • 1