| 2248 | } |
| 2249 | |
| 2250 | String JavascriptProcessor::SnippetDocument::getSnippetAsFunction() const |
| 2251 | { |
| 2252 | SpinLock::ScopedLockType sl(pendingLock); |
| 2253 | |
| 2254 | if (isSnippetEmpty()) return emptyText; |
| 2255 | else if (pendingNewContent.isNotEmpty()) return pendingNewContent; |
| 2256 | else return getAllContent(); |
| 2257 | } |
| 2258 | |
| 2259 | JavascriptProcessor::CompileThread::CompileThread(JavascriptProcessor *processor) : |
| 2260 | ThreadWithProgressWindow("Compiling", true, false), |
no test coverage detected