Skip to content
Parsing, analyzing, and comparing source code across many languages
Haskell Other
  1. Haskell 99.3%
  2. Other 0.7%
Branch: master
Clone or download
patrickt Merge pull request #342 from github/fix-docker-again
Ensure semantic-analysis is copied in the Dockerfile.
Latest commit 1a468fb on Oct 15, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.licenses/semantic/cabal Merge branch 'master' into sinister-orphan-machinations 6 years ago
app Move semanticd into it's own directory, update builds 7 years ago
bench Make findFilesInDir use pathtype. 6 years ago
bin Keep a bin directory around for deployments 10 years ago
docs Adds configuration documentation. 6 years ago
notices Remove docker section from third-party notice 7 years ago
proto First pass at switching from proto3 to proto-lens 6 years ago
script Use tclem/proto-lens-jsonpb 6 years ago
semantic-analysis 🔥 the redundant dependencies on directory & filepath. 6 years ago
semantic-core Rename Core.Core.* to Core.*. 6 years ago
semantic-java Update semantic-java. 6 years ago
semantic-json Re-export tree_sitter_json from Language.JSON. 6 years ago
semantic-python Merge branch 'master' into semantic-analysis 6 years ago
semantic-source Spacing. 6 years ago
semantic-tags Re-export :+:. 6 years ago
src Make findFilesInDir use pathtype. 6 years ago
test Make findFilesInDir use pathtype. 6 years ago
.dockerignore Few more dockerignores 6 years ago
.ghci Don't load pretty-show/hscolour by default. (#16) 6 years ago
.gitattributes The fixtures are binary files, don't diff them. 6 years ago
.gitignore Use tclem/proto-lens-jsonpb 6 years ago
.gitmodules Kill tree-sitter-python submodule. 6 years ago
.hlint.yaml Fix some hlint warnings 6 years ago
.hspec Add .hspec for depths default, make sure hspec version supports 9 years ago
.stylish-haskell.yaml Merge remote-tracking branch 'origin/indexer-prototype' into deploy-t… 7 years ago
.travis.yml semantic-core no longer has doctests. 6 years ago
CODE_OF_CONDUCT.md Add code of conduct 6 years ago
CONTRIBUTING.md Address @dcreager's suggestions. 6 years ago
Dockerfile Alphabetize. 6 years ago
LICENSE Use MIT license for code 6 years ago
README.md Update Java support status in the README. 6 years ago
Setup.hs Use the simple build type. 8 years ago
cabal.project Stub in a package for analysis. 6 years ago
semantic.cabal Merge branch 'master' into 🔥-ts-parse 6 years ago

README.md

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] | [--json-graph] | [--symbols]
                      | [--dot] | [--show] | [--quiet]) [FILES...]
  Generate parse trees for path(s)

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

Diff

Usage: semantic diff ([--sexpression] | [--json] | [--json-graph] | [--toc] |
                     [--dot] | [--show]) [FILE_A] [FILE_B]
  Compute changes between paths

Available options:
  --sexpression            Output s-expression diff tree (default)
  --json                   Output JSON diff trees
  --json-graph             Output JSON diff trees
  --toc                    Output JSON table of contents diff summary
  --dot                    Output the diff as a DOT graph
  --show                   Output using the Show instance (debug only, format
                           subject to change without notice)

Graph

Usage: semantic graph ([--imports] | [--calls]) [--packages] ([--dot] | [--json]
                      | [--show]) ([--root DIR] [--exclude-dir DIR]
                      DIR:LANGUAGE | FILE | --language ARG (FILES... | --stdin))
  Compute a graph for a directory or from a top-level entry point module

Available options:
  --imports                Compute an import graph (default)
  --calls                  Compute a call graph
  --packages               Include a vertex for the package, with edges from it
                           to each module
  --dot                    Output in DOT graph format (default)
  --json                   Output JSON graph
  --show                   Output using the Show instance (debug only, format
                           subject to change without notice)
  --root DIR               Root directory of project. Optional, defaults to
                           entry file/directory.
  --exclude-dir DIR        Exclude a directory (e.g. vendor)
  --language ARG           The language for the analysis.
  --stdin                  Read a list of newline-separated paths to analyze
                           from stdin.

Language support

Priority Language Parse Assign Diff ToC Symbols Import graph Call graph Control flow graph
1 Ruby 🚧
2 JavaScript 🚧
3 TypeScript 🚧
4 Python 🚧
5 Go 🚧
PHP
Java 🚧 🚧 🚧 🔶
JSON N/A N/A N/A N/A
JSX 🔶
Haskell 🚧 🚧 🚧 🔶 🚧
Markdown 🔶 N/A N/A N/A  
  • — Supported
  • 🔶 — Partial support
  • 🚧 — Under development

Development

semantic requires at least GHC 8.6.4 and Cabal 2.4. 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.

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 new-build
cabal new-test
cabal new-run semantic -- --help

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

Technology and architecture

Architecturally, semantic:

  1. Reads blobs.
  2. Generates parse trees for those blobs with tree-sitter (an incremental parsing system for programming tools).
  3. Assigns those trees into a generalized representation of syntax.
  4. Performs analysis, computes diffs, or just returns parse trees.
  5. Renders output in one of many supported formats.

Semantic leverages a number of interesting algorithms and techniques:

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.

You can’t perform that action at this time.