curvedmark / roole

A language that compiles to CSS
http://roole.org
MIT License
342 stars 21 forks source link

Bug: operator `in` applied to string always return true #104

Closed mishanga closed 11 years ago

mishanga commented 11 years ago

@if a in '' { b { a: b } } => b { a: b }

curvedmark commented 11 years ago

There is no in operator support currently. This is simply a list a in '' being converted to true.

mishanga commented 11 years ago

o_0 unexpectedly ОК, thanks for explanation.