pine-parser 0.1.0

Parser for Pine Script.
Documentation
[
  {
    "VarDecl": {
      "name": "myValue",
      "type_annotation": null,
      "initializer": {
        "Literal": "Na"
      },
      "var_kind": "Var"
    }
  },
  {
    "VarDecl": {
      "name": "check",
      "type_annotation": null,
      "initializer": {
        "Ternary": {
          "condition": {
            "Variable": "someCondition"
          },
          "then_expr": {
            "Literal": "Na"
          },
          "else_expr": {
            "Literal": {
              "Int": 100
            }
          }
        }
      },
      "var_kind": "Var"
    }
  }
]