normalize-surface-syntax 0.3.2

Surface-level syntax translation between languages via a common IR
Documentation
---
source: crates/normalize-surface-syntax/tests/snapshots.rs
assertion_line: 110
expression: "parse(\"local y = \\\"hello\\\"\")"
---
{
  "body": [
    {
      "Let": {
        "name": "y",
        "init": {
          "Literal": {
            "String": "hello"
          }
        },
        "mutable": true
      }
    }
  ]
}