denoland / deno_ast

Source text parsing, lexing, and AST related functionality for Deno
https://crates.io/crates/deno_ast
MIT License
146 stars 45 forks source link

fix: non-identifier properties not quoted #168

Closed marvinhagemeister closed 10 months ago

marvinhagemeister commented 10 months ago

Ran into a bug where we didn't quote non-identifier object properties like aria-label.

// before
const a = { aria-label: "foo" }

// after
const a = { "aria-label": "foo" }