(quote)
| 193 | : /[^<]*(?:<(?!\?=|\?php[ \t\r\n]|script language\=('|")?php('|")?\>)[^<]*)*/i, |
| 194 | labelRegexPart = '[a-zA-Z_\\x7f-\\uffff][a-zA-Z0-9_\\x7f-\\uffff]*', |
| 195 | stringRegexPart = function (quote) { |
| 196 | // Matches non-interpolated portion of interpolated string |
| 197 | return '[^' + quote + '\\\\${]*(?:(?:\\\\[\\s\\S]|\\$(?!\\{|[a-zA-Z_\\x7f-\\uffff])|\\{(?!\\$))[^' + quote + '\\\\${]*)*'; |
| 198 | }, |
| 199 | |
| 200 | sharedStringTokens = [ |
| 201 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…