mechio / takana

Takana lets you see your SCSS and CSS style changes live, in the browser, as you type them
http://takana.io
MIT License
1.11k stars 61 forks source link

Takana breaks when using :not pseudo-selector #64

Closed danielkalen closed 9 years ago

danielkalen commented 9 years ago

Every time I start writing a :not selector takana breaks and throws an error "Segmentation fault: 11".

I doubt this is an error with libsass because when I refresh takana after adding the :not selector everything keeps working fine as it should.

nc commented 9 years ago

@danielkalen thank you for filing this.

I can confirm the crash when an incomplete :not is present. For example

  body:not('') {

  }

Will not result in a segmentation fault, whereas this does:

  body:not() {

  }

I would suggest filing this as a libsass bug.