My first question is where is this in relation to SASS?
The only relation I know to SASS is that you can take advantage of SASS’ nesting. For example:
.list {
&__header { /* stuff */ }
&__item { /* stuff */ }
&--modifier { /* stuff */ }
&--modifier2 { /* stuff */ }
}