Lines Matching refs:format
85 if ( context.format ) {
86 if ( context.format.semicolonAfterLastProperty || isPropertyBlock ) {
146 return context.format && context.format.breaks[where];
150 return context.format && context.format.spaces[where];
154 if (context.format) {
155 context.indentBy += context.format.indentBy;
156 context.indentWith = context.format.indentWith.repeat(context.indentBy);
159 (allowsBreak(context, where) ? context.format.breakWith : emptyCharacter) +
167 if (context.format) {
168 context.indentBy -= context.format.indentBy;
169 context.indentWith = context.format.indentWith.repeat(context.indentBy);
170 …beforeBlockEnd && allowsBreak(context, Breaks.BeforeBlockEnds) ? context.format.breakWith : emptyC…
173 …(isLast ? emptyCharacter : (allowsBreak(context, where) ? context.format.breakWith : emptyCharacte…
180 return context.format ?
186 return context.format ?
187 …Marker.SEMICOLON + (isLast || !allowsBreak(context, where) ? emptyCharacter : context.format.break…
192 return context.format ?
193 …Marker.COMMA + (allowsBreak(context, Breaks.BetweenSelectors) ? context.format.breakWith : emptyCh…
226 …store(context, allowsBreak(context, Breaks.AfterComment) ? context.format.breakWith : emptyCharact…