syntastic 0.5.1

Generic abstract syntax representation
Documentation
---
source: src/ast.rs
expression: example_ast()
---
{
  "Operation": [
    "Plus",
    [
      {
        "Variable": [
          {
            "Num": 2
          }
        ]
      },
      {
        "Operation": [
          "Times",
          [
            {
              "Variable": [
                {
                  "Num": 3
                }
              ]
            },
            {
              "Variable": [
                "X"
              ]
            }
          ]
        ]
      }
    ]
  ]
}