Increase number of parts in SplitSource.
GitOrigin-RevId: 1c9649938968b8ef6fd5b5c25ef30697338ab871
This commit is contained in:
parent
8be4233d8b
commit
cdd058565e
@ -84,7 +84,9 @@ function split_file($file, $chunks, $undo) {
|
|||||||
$add_depth = strpos($line, 'namespace ') === 0 ? 1 : (strpos($line, '} // namespace') === 0 ? -1 : 0);
|
$add_depth = strpos($line, 'namespace ') === 0 ? 1 : (strpos($line, '} // namespace') === 0 ? -1 : 0);
|
||||||
if ($add_depth) {
|
if ($add_depth) {
|
||||||
# namespace begin/end
|
# namespace begin/end
|
||||||
|
if ($add_depth > 0) {
|
||||||
$depth += $add_depth;
|
$depth += $add_depth;
|
||||||
|
}
|
||||||
if ($depth <= $target_depth) {
|
if ($depth <= $target_depth) {
|
||||||
if ($add_depth > 0) {
|
if ($add_depth > 0) {
|
||||||
$namespace_begin .= $line;
|
$namespace_begin .= $line;
|
||||||
@ -92,6 +94,9 @@ function split_file($file, $chunks, $undo) {
|
|||||||
$namespace_end .= $line;
|
$namespace_end .= $line;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if ($add_depth < 0) {
|
||||||
|
$depth += $add_depth;
|
||||||
|
}
|
||||||
if ($is_static) {
|
if ($is_static) {
|
||||||
$common .= $current;
|
$common .= $current;
|
||||||
} else {
|
} else {
|
||||||
@ -210,10 +215,11 @@ if (in_array('--help', $argv) || in_array('-h', $argv)) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$undo = in_array('--undo', $argv) || in_array('-u', $argv);
|
$undo = in_array('--undo', $argv) || in_array('-u', $argv);
|
||||||
$files = array('td/telegram/ContactsManager' => 10,
|
$files = array('td/telegram/ContactsManager' => 20,
|
||||||
'td/telegram/MessagesManager' => 20,
|
'td/telegram/MessagesManager' => 50,
|
||||||
'td/telegram/Td' => 20,
|
'td/telegram/NotificationManager' => 10,
|
||||||
'td/telegram/StickersManager' => 10,
|
'td/telegram/StickersManager' => 10,
|
||||||
|
'td/telegram/Td' => 40,
|
||||||
'td/generate/auto/td/telegram/td_api' => 10,
|
'td/generate/auto/td/telegram/td_api' => 10,
|
||||||
'td/generate/auto/td/telegram/td_api_json' => 10,
|
'td/generate/auto/td/telegram/td_api_json' => 10,
|
||||||
'td/generate/auto/td/telegram/telegram_api' => 10);
|
'td/generate/auto/td/telegram/telegram_api' => 10);
|
||||||
|
Reference in New Issue
Block a user