You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var obj = {
eye : 1,
like : 3,
bees: "Some random string"
};
are squished when stringify is used to become:
var obj = {eye: 1, like: 3, bees: "Some random string"};
This isn't ideal for larger objects which are frequently defined over multiple lines. It is also tricky if you are trying to match line numbers in an original input program with the stringify version of its AST.
The text was updated successfully, but these errors were encountered:
Objects in the original code as:
are squished when stringify is used to become:
var obj = {eye: 1, like: 3, bees: "Some random string"};
This isn't ideal for larger objects which are frequently defined over multiple lines. It is also tricky if you are trying to match line numbers in an original input program with the stringify version of its AST.
The text was updated successfully, but these errors were encountered: