This commit is contained in:
Shelley Vohr 2018-09-13 08:56:07 -07:00 коммит произвёл Nitish Sakhawalkar
Родитель 1545fedf9e
Коммит 673addcceb
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -42,6 +42,8 @@ function startup() {
setupGlobalVariables();
setupAsarSupport();
// Bootstrappers for all threads, including worker threads and main thread
const perThreadSetup = NativeModule.require('internal/process/per_thread');
// Bootstrappers for the main thread only
@ -657,6 +659,10 @@ function setupProcessICUVersions() {
}
}
function setupAsarSupport() {
process._linkedBinding('atom_common_asar').initAsarSupport(NativeModule._source, NativeModule.require);
}
function wrapForBreakOnFirstLine(source) {
if (!process._breakFirstLine)
return source;