(mode, match)
| 430 | } |
| 431 | |
| 432 | function keywordMatch(mode, match) { |
| 433 | var match_str = language.case_insensitive ? match[0].toLowerCase() : match[0]; |
| 434 | var value = mode.keywords[match_str]; |
| 435 | if (value && value instanceof Array) |
| 436 | return value; |
| 437 | return false; |
| 438 | } |
| 439 | |
| 440 | function processKeywords(buffer, mode) { |
| 441 | buffer = escape(buffer); |
no outgoing calls
no test coverage detected
searching dependent graphs…