-
-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stringifier Ignores Manually Added Func Child Nodes #69
Comments
Very strange. We're not deviating or overwriting how PostCSS's nodes behave in that regard. |
The issue is that astValue.nodes[0].params = 'NODES ARE IGNORED';
console.log({
root: valuesParser.nodeToString(astValue) // "rgbNODES ARE IGNORED"
}); |
Yeah, here's the culprit:
|
As you intend it, is |
It was intended to give a snapshot of the function sans name. This was 100% a lack of foresight on my part. Currently working on a fix for that. |
How Do We Reproduce?
Insert a new node into an AST.
Expected Behavior
Commas are added.
Actual Behavior
Commas are not added.
The text was updated successfully, but these errors were encountered: