0.5.4 • Published 2 months ago

bq2cst v0.5.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

bq2cst

Parse standard SQL, which is a dialect of BigQuery, into a concrete syntax tree.

!WARNING This parser is designed to be used via prettier-plugin-bq.

Features

  • forcused on standard SQL (in other words, other SQL dialects are out of scope)
  • developed in Rust, using wasm-pack

Install

npm install bq2cst

Usage

const parser = require("bq2cst");
parser.parse("SELECT 1;")

//[
//  {
//    "token": {
//      "line":1,
//      "column":1,
//      "literal":"SELECT"
//    },
//    "node_type":"SelectStatement",
//    "children":{
//      "semicolon":{
//        "Node":{
//          "token":{"line":1,"column":9,"literal":";"},
//          "node_type":"Symbol",
//          "children":{}
//        }
//      },
//      "exprs":{
//        "NodeVec":[{
//          "token":{"line":1,"column":8,"literal":"1"},
//          "node_type":"NumericLiteral",
//          "children":{}
//        }]
//      }
//    }
//  },
//  {
//    "token":null,
//    "node_type":"EOF",
//    "children":{}
//  }
//]
0.5.4

2 months ago

0.5.3

2 months ago

0.5.2

2 months ago

0.5.1

2 months ago

0.5.0

3 months ago

0.4.31

4 months ago

0.4.32

4 months ago

0.4.30

4 months ago

0.4.28

10 months ago

0.4.29

9 months ago

0.4.27

10 months ago

0.4.26

10 months ago

0.4.25

12 months ago