(content, node)
| 7937 | } |
| 7938 | |
| 7939 | function c(content, node) { |
| 7940 | return { |
| 7941 | content, |
| 7942 | loc: node && node.loc, |
| 7943 | has_newline: /\n/.test(content) |
| 7944 | }; |
| 7945 | } |
| 7946 | |
| 7947 | const OPERATOR_PRECEDENCE = { |
| 7948 | '||': 3, |
no outgoing calls
no test coverage detected