(s, o, i = {})
| 20366 | /\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/, |
| 20367 | }, |
| 20368 | COMMENT = function (s, o, i = {}) { |
| 20369 | const a = inherit({ className: 'comment', begin: s, end: o, contains: [] }, i) |
| 20370 | return ( |
| 20371 | a.contains.push($), |
| 20372 | a.contains.push({ |
| 20373 | className: 'doctag', |
| 20374 | begin: '(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):', |
| 20375 | relevance: 0, |
| 20376 | }), |
| 20377 | a |
| 20378 | ) |
| 20379 | }, |
| 20380 | U = COMMENT('//', '$'), |
| 20381 | V = COMMENT('/\\*', '\\*/'), |
| 20382 | z = COMMENT('#', '$'), |
no test coverage detected