(t)
| 3161 | } |
| 3162 | |
| 3163 | function nolinebreak(t) { |
| 3164 | t = t || state.tokens.curr; |
| 3165 | if (t.line !== state.tokens.next.line) { |
| 3166 | warning("E022", t, t.value); |
| 3167 | } |
| 3168 | } |
| 3169 | |
| 3170 | function nobreakcomma(left, right) { |
| 3171 | if (left.line !== right.line) { |
no test coverage detected