(left, right)
| 3153 | } |
| 3154 | |
| 3155 | function nobreaknonadjacent(left, right) { |
| 3156 | left = left || state.tokens.curr; |
| 3157 | right = right || state.tokens.next; |
| 3158 | if (!state.option.laxbreak && left.line !== right.line) { |
| 3159 | warning("W014", right, right.value); |
| 3160 | } |
| 3161 | } |
| 3162 | |
| 3163 | function nolinebreak(t) { |
| 3164 | t = t || state.tokens.curr; |
no test coverage detected