Hi,

I found a SASS parsing bug. Consider this:

#aaaa
  &.bbbb, cccc
    :color blue

It generates:

#aaaa.bbbb, cccc {
  color: blue; }

Instead of what I consider it should generate:

#aaaa.bbbb, #aaaa cccc {
  color: blue; }

For now there's an easy fix:

#aaaa
  &.bbbb, & cccc
    :color blue

but the error remains... =)

I created the test for this, though I haven't solved the problem.

Thank you,
Glenn

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Haml" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/haml?hl=en
-~----------~----~----~----~------~----~------~--~---

Attachment: diff.patch
Description: Binary data

Reply via email to