GitXplorerGitXplorer
g

semantic

public
8944 stars
454 forks
115 issues

Commits

List of commits on branch main.
Verified
ad281b52e3a399ff88126e3d06063c48eb245135

Merge pull request #718 from sebastiaanspeck/patch-1

rrnkaufman committed 4 months ago
Verified
0edef40b998d339b50abf597579c894e072f8fc0

Update why-tree-sitter.md

ssebastiaanspeck committed 4 months ago
Verified
ada883d72af9aaf748f2c2a9174e964783ab175b

Update why-tree-sitter.md

ssebastiaanspeck committed 4 months ago
Verified
7bd2ac252adfe867adc1f6e029f684615eef2161

Merge pull request #716 from github/this-branch-name-left-intentionally-blank

rrobrix committed 6 months ago
Verified
6700d992d04b72df0280acc61431e0b335c3b70b

Merge branch 'main' into this-branch-name-left-intentionally-blank

rrobrix committed 6 months ago
Verified
d7f9e09eb305a6fadafa0682d2aa1eeb87aa3992

Merge pull request #703 from SamB/SamB-patch-1

rrobrix committed 6 months ago

README

The README file for this repository.

Semantic

semantic is a Haskell library and command line tool for parsing, analyzing, and comparing source code.

In a hurry? Check out our documentation of example uses for the semantic command line tool.

Table of Contents
Usage
Language support
Development
Technology and architecture
Licensing

Usage

Run semantic --help for complete list of up-to-date options.

Parse

Usage: semantic parse [--sexpression | (--json-symbols|--symbols) |
                        --proto-symbols | --show | --quiet] [FILES...]
  Generate parse trees for path(s)

Available options:
  --sexpression            Output s-expression parse trees (default)
  --json-symbols,--symbols Output JSON symbol list
  --proto-symbols          Output protobufs symbol list
  --show                   Output using the Show instance (debug only, format
                           subject to change without notice)
  --quiet                  Don't produce output, but show timing stats
  -h,--help                Show this help text

Language support

Language Parse AST Symbols† Stack graphs
Ruby
JavaScript
TypeScript 🚧
Python 🚧
Go
PHP
Java 🚧
JSON ⬜️ ⬜️
JSX
TSX
CodeQL
Haskell 🚧 🚧

† Used for code navigation on github.com.

  • ✅ — Supported
  • 🔶 — Partial support
  • 🚧 — Under development
  • ⬜ - N/A ️

Development

semantic requires at least GHC 8.10.1 and Cabal 3.0. We strongly recommend using ghcup to sandbox GHC versions, as GHC packages installed through your OS's package manager may not install statically-linked versions of the GHC boot libraries. semantic currently builds only on Unix systems; users of other operating systems may wish to use the Docker images.

We use cabal's Nix-style local builds for development. To get started quickly:

git clone git@github.com:github/semantic.git
cd semantic
script/bootstrap
cabal v2-build all
cabal v2-run semantic:test
cabal v2-run semantic:semantic -- --help

You can also use the Bazel build system for development. To learn more about Bazel and why it might give you a better development experience, check the build documentation.

git clone git@github.com:github/semantic.git
cd semantic
script/bootstrap-bazel
bazel build //...

stack as a build tool is not officially supported; there is unofficial stack.yaml support available, though we cannot make guarantees as to its stability.

Technology and architecture

Architecturally, semantic:

  1. Generates per-language Haskell syntax types based on tree-sitter grammar definitions.
  2. Reads blobs from a filesystem or provided via a protocol buffer request.
  3. Returns blobs or performs analysis.
  4. Renders output in one of many supported formats.

Throughout its lifecycle, semantic has leveraged a number of interesting algorithms and techniques, including:

Contributions

Contributions are welcome! Please see our contribution guidelines and our code of conduct for details on how to participate in our community.

Licensing

Semantic is licensed under the MIT license.