opencodesearchparser 0.1.3

Rust Library for Parsing and Segmentation of Source code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
let globalVar = 42;

function add(a, b) {
    return a + b;
}

class MyClass {
    method() {
        console.log("Method called");
    }
}

const PI = 3.14;