(left, right)
| 3168 | } |
| 3169 | |
| 3170 | function nobreakcomma(left, right) { |
| 3171 | if (left.line !== right.line) { |
| 3172 | if (!state.option.laxcomma) { |
| 3173 | if (comma.first) { |
| 3174 | warning("I001"); |
| 3175 | comma.first = false; |
| 3176 | } |
| 3177 | warning("W014", left, right.value); |
| 3178 | } |
| 3179 | } |
| 3180 | } |
| 3181 | |
| 3182 | function comma(opts) { |
| 3183 | opts = opts || {}; |