meta-ast 0.7.0

Polyglot static-analysis engine: extract symbols and cross-language dependency graphs from 9 supported source languages, with optional MetaCall deployment manifest generation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function hello() {
    return "hello";
}

async function fetchData(url) {
    const response = await fetch(url);
    return response.json();
}

const compute = (x, y) => x + y;

const greet = (name) => `Hello, ${name}`;

export async function demo(url) {
    const data = await fetchData(url);
    return [hello(), data, compute(1, 2), greet("world")];
}