mariusschulz / styx

Derives a control flow graph from a JavaScript AST.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

styx

Derives the control flow graph from a JavaScript AST in ESTree format.

This project was created as a proof-of-concept implemention for my Bachelor's thesis in computer science:

Install

$ npm install styx

Usage

With the esprima and styx npm packages installed, Styx can be used as follows:

import Esprima from "esprima";
import * as Styx from "styx";

var code = "var x = 2 + 2;";
var ast = Esprima.parse(code);
var flowProgram = Styx.parse(ast);
var json = Styx.exportAsJson(flowProgram);

console.log(json);

About

Derives a control flow graph from a JavaScript AST.

License:MIT License


Languages

Language:TypeScript 84.4%Language:JavaScript 8.7%Language:HTML 5.7%Language:CSS 1.2%