intput: ```styl .foo height:1px .bar height:2px ``` expected: ```scss .foo { height: 1px; .bar { height: 2px; } } ``` actual: ```scss .foo { height: 1px;.bar { height: 2px; } } ```