(e, n, t = {})
| 221 | /\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/, |
| 222 | }, |
| 223 | b = function (e, n, t = {}) { |
| 224 | var a = r({ className: 'comment', begin: e, end: n, contains: [] }, t); |
| 225 | return ( |
| 226 | a.contains.push(m), |
| 227 | a.contains.push({ |
| 228 | className: 'doctag', |
| 229 | begin: '(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):', |
| 230 | relevance: 0, |
| 231 | }), |
| 232 | a |
| 233 | ); |
| 234 | }, |
| 235 | v = b('//', '$'), |
| 236 | x = b('/\\*', '\\*/'), |
| 237 | E = b('#', '$'); |
no test coverage detected