pine-parser 0.2.2

Parser for Pine Script.
Documentation
[
  {
    "If": {
      "condition": {
        "Literal": {
          "Bool": true
        }
      },
      "then_branch": [
        {
          "VarDecl": {
            "name": "x",
            "type_annotation": null,
            "initializer": {
              "Literal": {
                "Int": 1
              }
            }
          }
        }
      ],
      "else_if_branches": [],
      "else_branch": [
        {
          "VarDecl": {
            "name": "y",
            "type_annotation": null,
            "initializer": {
              "Literal": {
                "Int": 2
              }
            }
          }
        }
      ]
    }
  },
  {
    "VarDecl": {
      "name": "z",
      "type_annotation": null,
      "initializer": {
        "Literal": {
          "Int": 3
        }
      }
    }
  }
]