@artel/ru-reactivity 0.94.25030 → 0.94.25031
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,1094 +1,1139 @@
|
|
|
1
1
|
переводы
|
|
2
2
|
{
|
|
3
|
-
function run-atomically<T>(func, args)
|
|
4
|
-
|
|
3
|
+
function run-atomically<T>(func, args)
|
|
4
|
+
-> выполнить-атомарно<Т>(функ, аргументы)
|
|
5
5
|
|
|
6
|
-
function run-atomically<T>(options, func, args)
|
|
7
|
-
|
|
6
|
+
function run-atomically<T>(options, func, args)
|
|
7
|
+
-> выполнить-атомарно<Т>(настройки, функ, аргументы)
|
|
8
8
|
|
|
9
|
-
function run-non-reactively<T>(func, args)
|
|
10
|
-
|
|
9
|
+
function run-non-reactively<T>(func, args)
|
|
10
|
+
-> выполнить-нереактивно<Т>(действие, аргументы)
|
|
11
11
|
|
|
12
|
-
function run-sensitively<T>(sensitivity, func, args)
|
|
13
|
-
|
|
12
|
+
function run-sensitively<T>(sensitivity, func, args)
|
|
13
|
+
-> выполнить-чувствительно<Т>(вкл, действие, аргументы)
|
|
14
14
|
|
|
15
|
-
function manage-reactive-operation<T>(method)
|
|
16
|
-
|
|
15
|
+
function manage-reactive-operation<T>(method)
|
|
16
|
+
-> управление-реактивной-операцией<Т>(метод)
|
|
17
17
|
|
|
18
|
-
function configure-current-reactive-operation(options)
|
|
19
|
-
|
|
18
|
+
function configure-current-reactive-operation(options)
|
|
19
|
+
-> настроить-текущую-реактивную-операцию(настройки)
|
|
20
20
|
|
|
21
|
-
function dispose-observable-object(obj)
|
|
22
|
-
|
|
21
|
+
function dispose-observable-object(obj)
|
|
22
|
+
-> утилизировать-наблюдаемый-объекта(объ)
|
|
23
23
|
|
|
24
24
|
// function options(value) ->
|
|
25
25
|
|
|
26
|
-
Logging-Level
|
|
27
|
-
|
|
26
|
+
Logging-Level
|
|
27
|
+
-> Уровень-Журнализации
|
|
28
28
|
|
|
29
|
-
type Reactive-Operation-Ex<T>
|
|
29
|
+
type Reactive-Operation-Ex<T>
|
|
30
|
+
-> Реактивная-Операция-Плюс<Т>
|
|
30
31
|
{
|
|
31
|
-
'operation'
|
|
32
|
-
|
|
32
|
+
'operation'
|
|
33
|
+
-> 'операция'
|
|
33
34
|
|
|
34
|
-
prototype
|
|
35
|
-
|
|
35
|
+
prototype
|
|
36
|
+
-> прототип
|
|
36
37
|
|
|
37
|
-
creation(action)
|
|
38
|
-
|
|
38
|
+
creation(action)
|
|
39
|
+
-> (действие)
|
|
39
40
|
|
|
40
|
-
function launch()
|
|
41
|
-
|
|
41
|
+
function launch()
|
|
42
|
+
-> запустить()
|
|
42
43
|
}
|
|
43
44
|
|
|
44
|
-
type Kind
|
|
45
|
+
type Kind
|
|
46
|
+
-> Разновидность
|
|
45
47
|
{
|
|
46
|
-
plain
|
|
47
|
-
|
|
48
|
+
plain
|
|
49
|
+
-> обычный
|
|
48
50
|
|
|
49
|
-
atomic
|
|
50
|
-
|
|
51
|
+
atomic
|
|
52
|
+
-> атомарно
|
|
51
53
|
|
|
52
|
-
reactive
|
|
53
|
-
|
|
54
|
+
reactive
|
|
55
|
+
-> реактивно
|
|
54
56
|
|
|
55
|
-
cached
|
|
56
|
-
|
|
57
|
+
cached
|
|
58
|
+
-> кэшировано
|
|
57
59
|
}
|
|
58
60
|
|
|
59
|
-
type Reentrance
|
|
61
|
+
type Reentrance
|
|
62
|
+
-> Повторный-Вход
|
|
60
63
|
{
|
|
61
|
-
prevent-with-error
|
|
62
|
-
|
|
64
|
+
prevent-with-error
|
|
65
|
+
-> предотвратить-с-ошибкой
|
|
63
66
|
|
|
64
|
-
wait-and-restart
|
|
65
|
-
|
|
67
|
+
wait-and-restart
|
|
68
|
+
-> дождаться-и-перезапустить
|
|
66
69
|
|
|
67
|
-
cancel-previous
|
|
68
|
-
|
|
70
|
+
cancel-previous
|
|
71
|
+
-> отменить-предыдущий
|
|
69
72
|
|
|
70
|
-
cancel-and-wait-previous
|
|
71
|
-
|
|
73
|
+
cancel-and-wait-previous
|
|
74
|
+
-> отменить-и-дождаться-предыдущего
|
|
72
75
|
|
|
73
|
-
overwrite-previous
|
|
74
|
-
|
|
76
|
+
overwrite-previous
|
|
77
|
+
-> перезаписать-предыдущий
|
|
75
78
|
|
|
76
|
-
run-side-by-side
|
|
77
|
-
|
|
79
|
+
run-side-by-side
|
|
80
|
+
-> выполнять-бок-о-бок
|
|
78
81
|
}
|
|
79
82
|
|
|
80
|
-
type Isolation
|
|
83
|
+
type Isolation
|
|
84
|
+
-> Изоляция
|
|
81
85
|
{
|
|
82
|
-
join-to-current-transaction
|
|
83
|
-
|
|
86
|
+
join-to-current-transaction
|
|
87
|
+
-> присоединить-к-текущей-транзакции
|
|
84
88
|
|
|
85
|
-
join-as-nested-transaction
|
|
86
|
-
|
|
89
|
+
join-as-nested-transaction
|
|
90
|
+
-> присоединить-как-подчинённую-транзакцию
|
|
87
91
|
|
|
88
|
-
disjoin-from-outer-transaction
|
|
89
|
-
|
|
92
|
+
disjoin-from-outer-transaction
|
|
93
|
+
-> отсоединить-от-внешней-транзакции
|
|
90
94
|
|
|
91
|
-
disjoin-from-outer-and-inner-transactions
|
|
92
|
-
|
|
95
|
+
disjoin-from-outer-and-inner-transactions
|
|
96
|
+
-> отсоединить-от-внешней-и-внутренних-транзакций
|
|
93
97
|
|
|
94
|
-
disjoin-for-internal-disposal
|
|
95
|
-
|
|
98
|
+
disjoin-for-internal-disposal
|
|
99
|
+
-> отсоединить-для-внутренней-утилизации
|
|
96
100
|
}
|
|
97
101
|
|
|
98
102
|
type Mode -> Режим
|
|
99
103
|
{
|
|
100
|
-
root-node
|
|
101
|
-
|
|
104
|
+
root-node
|
|
105
|
+
-> корневой-узел
|
|
102
106
|
|
|
103
|
-
default
|
|
104
|
-
|
|
107
|
+
default
|
|
108
|
+
-> обычный
|
|
105
109
|
|
|
106
|
-
autonomous
|
|
107
|
-
|
|
110
|
+
autonomous
|
|
111
|
+
-> автономный
|
|
108
112
|
|
|
109
|
-
manual-mount
|
|
110
|
-
|
|
113
|
+
manual-mount
|
|
114
|
+
-> ручное-монтирование
|
|
111
115
|
}
|
|
112
116
|
|
|
113
|
-
type Priority
|
|
117
|
+
type Priority
|
|
118
|
+
-> Приоритет
|
|
114
119
|
{
|
|
115
|
-
realtime
|
|
116
|
-
|
|
120
|
+
realtime
|
|
121
|
+
-> реальное-время
|
|
117
122
|
|
|
118
|
-
normal
|
|
119
|
-
|
|
123
|
+
normal
|
|
124
|
+
-> обычный
|
|
120
125
|
|
|
121
|
-
background
|
|
122
|
-
|
|
126
|
+
background
|
|
127
|
+
-> фоновый
|
|
123
128
|
}
|
|
124
129
|
|
|
125
|
-
type Reactivity-Options
|
|
130
|
+
type Reactivity-Options
|
|
131
|
+
-> Настройки-Реактивности
|
|
126
132
|
{
|
|
127
|
-
kind
|
|
128
|
-
|
|
133
|
+
kind
|
|
134
|
+
-> разновидность
|
|
129
135
|
|
|
130
|
-
isolation
|
|
131
|
-
|
|
136
|
+
isolation
|
|
137
|
+
-> изоляция
|
|
132
138
|
|
|
133
|
-
order
|
|
134
|
-
|
|
139
|
+
order
|
|
140
|
+
-> порядок
|
|
135
141
|
|
|
136
|
-
no-side-effects
|
|
137
|
-
|
|
142
|
+
no-side-effects
|
|
143
|
+
-> без-побочных-эффектов
|
|
138
144
|
|
|
139
|
-
observable-args
|
|
140
|
-
|
|
145
|
+
observable-args
|
|
146
|
+
-> наблюдаемые-аргументы
|
|
141
147
|
|
|
142
|
-
throttling
|
|
143
|
-
|
|
148
|
+
throttling
|
|
149
|
+
-> демпфер
|
|
144
150
|
|
|
145
|
-
reentrance
|
|
146
|
-
|
|
151
|
+
reentrance
|
|
152
|
+
-> повторный-вход
|
|
147
153
|
|
|
148
|
-
allow-obsolete-to-finish
|
|
149
|
-
|
|
154
|
+
allow-obsolete-to-finish
|
|
155
|
+
-> разрешено-завершение-устаревших
|
|
150
156
|
|
|
151
|
-
journal
|
|
152
|
-
|
|
157
|
+
journal
|
|
158
|
+
-> история-изменений
|
|
153
159
|
|
|
154
|
-
indicator
|
|
155
|
-
|
|
160
|
+
indicator
|
|
161
|
+
-> индикатор
|
|
156
162
|
|
|
157
|
-
logging
|
|
158
|
-
|
|
163
|
+
logging
|
|
164
|
+
-> журнализация
|
|
159
165
|
}
|
|
160
166
|
|
|
161
|
-
type Snapshot-Options
|
|
167
|
+
type Snapshot-Options
|
|
168
|
+
-> Настройки-Снимка
|
|
162
169
|
{
|
|
163
|
-
hint
|
|
164
|
-
|
|
170
|
+
hint
|
|
171
|
+
-> подсказка
|
|
165
172
|
|
|
166
|
-
isolation
|
|
167
|
-
|
|
173
|
+
isolation
|
|
174
|
+
-> изоляция
|
|
168
175
|
|
|
169
|
-
journal
|
|
170
|
-
|
|
176
|
+
journal
|
|
177
|
+
-> история-изменений
|
|
171
178
|
|
|
172
|
-
logging
|
|
173
|
-
|
|
179
|
+
logging
|
|
180
|
+
-> журнализация
|
|
174
181
|
|
|
175
|
-
token
|
|
176
|
-
|
|
182
|
+
token
|
|
183
|
+
-> жетон
|
|
177
184
|
}
|
|
178
185
|
|
|
179
|
-
type Logging-Options
|
|
186
|
+
type Logging-Options
|
|
187
|
+
-> Настройки-Журнализации
|
|
180
188
|
{
|
|
181
|
-
enabled
|
|
182
|
-
|
|
189
|
+
enabled
|
|
190
|
+
-> вкл
|
|
183
191
|
|
|
184
|
-
transaction
|
|
185
|
-
|
|
192
|
+
transaction
|
|
193
|
+
-> транзакция
|
|
186
194
|
|
|
187
|
-
'operation'
|
|
188
|
-
|
|
195
|
+
'operation'
|
|
196
|
+
-> 'операция'
|
|
189
197
|
|
|
190
|
-
step
|
|
191
|
-
|
|
198
|
+
step
|
|
199
|
+
-> шан
|
|
192
200
|
|
|
193
|
-
indicator
|
|
194
|
-
|
|
201
|
+
indicator
|
|
202
|
+
-> индикатор
|
|
195
203
|
|
|
196
|
-
read
|
|
197
|
-
|
|
204
|
+
read
|
|
205
|
+
-> 'чтение'
|
|
198
206
|
|
|
199
|
-
write
|
|
200
|
-
|
|
207
|
+
write
|
|
208
|
+
-> 'запись'
|
|
201
209
|
|
|
202
|
-
change
|
|
203
|
-
|
|
210
|
+
change
|
|
211
|
+
-> изменение
|
|
204
212
|
|
|
205
|
-
obsolete
|
|
206
|
-
|
|
213
|
+
obsolete
|
|
214
|
+
-> устаревание
|
|
207
215
|
|
|
208
|
-
'error'
|
|
209
|
-
|
|
216
|
+
'error'
|
|
217
|
+
-> 'ошибка'
|
|
210
218
|
|
|
211
|
-
warning
|
|
212
|
-
|
|
219
|
+
warning
|
|
220
|
+
-> предупреждение
|
|
213
221
|
|
|
214
|
-
gc
|
|
215
|
-
|
|
222
|
+
gc
|
|
223
|
+
-> собирание-мусора
|
|
216
224
|
|
|
217
|
-
color
|
|
218
|
-
|
|
225
|
+
color
|
|
226
|
+
-> цвет
|
|
219
227
|
|
|
220
|
-
prefix
|
|
221
|
-
|
|
228
|
+
prefix
|
|
229
|
+
-> префикс
|
|
222
230
|
|
|
223
|
-
margin-1
|
|
224
|
-
|
|
231
|
+
margin-1
|
|
232
|
+
-> отступ-1
|
|
225
233
|
|
|
226
|
-
margin-2
|
|
227
|
-
|
|
234
|
+
margin-2
|
|
235
|
+
-> отступ-2
|
|
228
236
|
}
|
|
229
237
|
|
|
230
|
-
type Profiling-Options
|
|
238
|
+
type Profiling-Options
|
|
239
|
+
-> Настройки-Профилирования
|
|
231
240
|
{
|
|
232
|
-
repetitive-usage-warning-threshold
|
|
233
|
-
|
|
241
|
+
repetitive-usage-warning-threshold
|
|
242
|
+
-> отсечка-предупреждения-для-повторяющегося-использования
|
|
234
243
|
|
|
235
|
-
main-thread-blocking-warning-threshold
|
|
236
|
-
|
|
244
|
+
main-thread-blocking-warning-threshold
|
|
245
|
+
-> отсечка-предупреждения-блокировки-главного-потока
|
|
237
246
|
|
|
238
|
-
async-action-duration-warning-threshold
|
|
239
|
-
|
|
247
|
+
async-action-duration-warning-threshold
|
|
248
|
+
-> отсечка-предупреждения-длительности-асинхронного-действия
|
|
240
249
|
|
|
241
|
-
garbage-collection-summary-interval
|
|
242
|
-
|
|
250
|
+
garbage-collection-summary-interval
|
|
251
|
+
-> интервал-информирования-собирания-мусора
|
|
243
252
|
}
|
|
244
253
|
|
|
245
|
-
type Worker
|
|
254
|
+
type Worker
|
|
255
|
+
-> Работник
|
|
246
256
|
{
|
|
247
|
-
id
|
|
248
|
-
|
|
257
|
+
id
|
|
258
|
+
-> идентификатор
|
|
249
259
|
|
|
250
|
-
hint
|
|
251
|
-
|
|
260
|
+
hint
|
|
261
|
+
-> подсказка
|
|
252
262
|
|
|
253
|
-
is-canceled
|
|
254
|
-
|
|
263
|
+
is-canceled
|
|
264
|
+
-> отменено
|
|
255
265
|
|
|
256
|
-
is-finished
|
|
257
|
-
|
|
266
|
+
is-finished
|
|
267
|
+
-> завершено
|
|
258
268
|
|
|
259
|
-
function cancel('error', restart-after)
|
|
260
|
-
|
|
269
|
+
function cancel('error', restart-after)
|
|
270
|
+
-> отменить('ошибка', рестарт-после)
|
|
261
271
|
|
|
262
|
-
function when-finished()
|
|
263
|
-
|
|
272
|
+
function when-finished()
|
|
273
|
+
-> когда-завершено()
|
|
264
274
|
}
|
|
265
275
|
|
|
266
|
-
type Reactive-System
|
|
276
|
+
type Reactive-System
|
|
277
|
+
-> Реактивная-Система
|
|
267
278
|
{
|
|
268
|
-
prototype
|
|
269
|
-
|
|
279
|
+
prototype
|
|
280
|
+
-> прототип
|
|
270
281
|
|
|
271
|
-
reactivity-auto-start-disabled
|
|
272
|
-
|
|
282
|
+
reactivity-auto-start-disabled
|
|
283
|
+
-> откл-автостарт-реакций
|
|
273
284
|
|
|
274
|
-
isLogging
|
|
275
|
-
|
|
285
|
+
isLogging
|
|
286
|
+
-> включена-журнализация
|
|
276
287
|
|
|
277
|
-
loggingOptions
|
|
278
|
-
|
|
288
|
+
loggingOptions
|
|
289
|
+
-> настройки-журнализации
|
|
279
290
|
|
|
280
|
-
function why(brief)
|
|
281
|
-
|
|
291
|
+
function why(brief)
|
|
292
|
+
-> почему(кратко)
|
|
282
293
|
|
|
283
|
-
function get-revision-of(obj)
|
|
284
|
-
|
|
294
|
+
function get-revision-of(obj)
|
|
295
|
+
-> получить-ревизию-для(объ)
|
|
285
296
|
|
|
286
|
-
function take-snapshot<T>(obj)
|
|
287
|
-
|
|
297
|
+
function take-snapshot<T>(obj)
|
|
298
|
+
-> забрать-снимок<Т>(объ)
|
|
288
299
|
|
|
289
|
-
function set-logging-mode(is-on, options)
|
|
290
|
-
|
|
300
|
+
function set-logging-mode(is-on, options)
|
|
301
|
+
-> установить-режим-журнализации(вкл, настройки)
|
|
291
302
|
|
|
292
|
-
function set-logging-hint<T>(obj, name)
|
|
293
|
-
|
|
303
|
+
function set-logging-hint<T>(obj, name)
|
|
304
|
+
-> установить-подсказку-журнализации(объ, подсказка)
|
|
294
305
|
|
|
295
|
-
function get-logging-hint<T>(obj, full)
|
|
296
|
-
|
|
306
|
+
function get-logging-hint<T>(obj, full)
|
|
307
|
+
-> получить-подсказку-журнализации(объ, полностью)
|
|
297
308
|
|
|
298
|
-
function set-profiling-mode(is-on, options)
|
|
299
|
-
|
|
309
|
+
function set-profiling-mode(is-on, options)
|
|
310
|
+
-> установить-режим-профилирования(вкл, настройки)
|
|
300
311
|
}
|
|
301
312
|
|
|
302
|
-
type Transaction
|
|
313
|
+
type Transaction
|
|
314
|
+
-> Транзакция
|
|
303
315
|
{
|
|
304
|
-
id
|
|
305
|
-
|
|
316
|
+
id
|
|
317
|
+
-> идентификатор
|
|
306
318
|
|
|
307
|
-
hint
|
|
308
|
-
|
|
319
|
+
hint
|
|
320
|
+
-> подсказка
|
|
309
321
|
|
|
310
|
-
options
|
|
311
|
-
|
|
322
|
+
options
|
|
323
|
+
-> настройки
|
|
312
324
|
|
|
313
|
-
timestamp
|
|
314
|
-
|
|
325
|
+
timestamp
|
|
326
|
+
-> метка-времени
|
|
315
327
|
|
|
316
|
-
'error'
|
|
317
|
-
|
|
328
|
+
'error'
|
|
329
|
+
-> 'ошибка'
|
|
318
330
|
|
|
319
|
-
changeset
|
|
320
|
-
|
|
331
|
+
changeset
|
|
332
|
+
-> набор-изменений
|
|
321
333
|
|
|
322
|
-
margin
|
|
323
|
-
|
|
334
|
+
margin
|
|
335
|
+
-> отступ
|
|
324
336
|
|
|
325
|
-
parent
|
|
326
|
-
|
|
337
|
+
parent
|
|
338
|
+
-> родитель
|
|
327
339
|
|
|
328
|
-
is-canceled
|
|
329
|
-
|
|
340
|
+
is-canceled
|
|
341
|
+
-> отменено
|
|
330
342
|
|
|
331
|
-
is-finished
|
|
332
|
-
|
|
343
|
+
is-finished
|
|
344
|
+
-> завершено
|
|
333
345
|
|
|
334
|
-
prototype
|
|
335
|
-
|
|
346
|
+
prototype
|
|
347
|
+
-> прототип
|
|
336
348
|
|
|
337
|
-
current
|
|
338
|
-
|
|
349
|
+
current
|
|
350
|
+
-> текущая
|
|
339
351
|
|
|
340
|
-
function 'run'<T>(func, args)
|
|
341
|
-
|
|
352
|
+
function 'run'<T>(func, args)
|
|
353
|
+
-> 'выполнить'<Т>(действие, аргументы)
|
|
342
354
|
|
|
343
|
-
function inspect<T>(func, args)
|
|
344
|
-
|
|
355
|
+
function inspect<T>(func, args)
|
|
356
|
+
-> инспектировать<Т>(действие, аргументы)
|
|
345
357
|
|
|
346
|
-
function apply()
|
|
347
|
-
|
|
358
|
+
function apply()
|
|
359
|
+
-> применить()
|
|
348
360
|
|
|
349
|
-
function seal()
|
|
350
|
-
|
|
361
|
+
function seal()
|
|
362
|
+
-> запечатать()
|
|
351
363
|
|
|
352
|
-
function wrap-as-pending<T>(func, secondary)
|
|
353
|
-
|
|
364
|
+
function wrap-as-pending<T>(func, secondary)
|
|
365
|
+
-> обернуть-как-ожидаемый<Т>(действие, второстепенно)
|
|
354
366
|
|
|
355
|
-
function cancel('error', retry-after-or-ignore)
|
|
356
|
-
|
|
367
|
+
function cancel('error', retry-after-or-ignore)
|
|
368
|
+
-> отменить('ошибка', повтор-после-или-игнорирование)
|
|
357
369
|
|
|
358
|
-
function when-finished(including-parent)
|
|
359
|
-
|
|
370
|
+
function when-finished(including-parent)
|
|
371
|
+
-> когда-завершено(включая-родителей)
|
|
360
372
|
|
|
361
|
-
function create(options, parent)
|
|
362
|
-
|
|
373
|
+
function create(options, parent)
|
|
374
|
+
-> создать(настройки, родитель)
|
|
363
375
|
|
|
364
|
-
function 'run'<T>(options, func, args)
|
|
365
|
-
|
|
376
|
+
function 'run'<T>(options, func, args)
|
|
377
|
+
-> 'выполнить'<Т>(настройки, действие, аргументы)
|
|
366
378
|
|
|
367
|
-
function isolate<T>(func, args)
|
|
368
|
-
|
|
379
|
+
function isolate<T>(func, args)
|
|
380
|
+
-> изолировать<Т>(действие, аргументы)
|
|
369
381
|
|
|
370
|
-
function outside<T>(func, args)
|
|
371
|
-
|
|
382
|
+
function outside<T>(func, args)
|
|
383
|
+
-> вне<Т>(действие, аргументы)
|
|
372
384
|
|
|
373
|
-
function is-frame-over(every-n, time-limit)
|
|
374
|
-
|
|
385
|
+
function is-frame-over(every-n, time-limit)
|
|
386
|
+
-> кадр-завершён(каждые-н, временной-лимит)
|
|
375
387
|
|
|
376
|
-
function request-next-frame(sleep-time)
|
|
377
|
-
|
|
388
|
+
function request-next-frame(sleep-time)
|
|
389
|
+
-> запросить-следующий-кадр(время-сна)
|
|
378
390
|
}
|
|
379
391
|
|
|
380
|
-
type Indicator
|
|
392
|
+
type Indicator
|
|
393
|
+
-> Индикатор
|
|
381
394
|
{
|
|
382
|
-
is-busy
|
|
383
|
-
|
|
395
|
+
is-busy
|
|
396
|
+
-> занято
|
|
384
397
|
|
|
385
|
-
counter
|
|
386
|
-
|
|
398
|
+
counter
|
|
399
|
+
-> счётчик
|
|
387
400
|
|
|
388
|
-
workers
|
|
389
|
-
|
|
401
|
+
workers
|
|
402
|
+
-> работники
|
|
390
403
|
|
|
391
|
-
busy-duration
|
|
392
|
-
|
|
404
|
+
busy-duration
|
|
405
|
+
-> длительность-занятости
|
|
393
406
|
|
|
394
|
-
prototype
|
|
395
|
-
|
|
407
|
+
prototype
|
|
408
|
+
-> прототип
|
|
396
409
|
|
|
397
|
-
function when-busy()
|
|
398
|
-
|
|
410
|
+
function when-busy()
|
|
411
|
+
-> когда-занят()
|
|
399
412
|
|
|
400
|
-
function when-idle()
|
|
401
|
-
|
|
413
|
+
function when-idle()
|
|
414
|
+
-> когда-свободен()
|
|
402
415
|
|
|
403
|
-
function create(hint, activation-delay, deactivation-delay, duration-resolution)
|
|
404
|
-
|
|
416
|
+
function create(hint, activation-delay, deactivation-delay, duration-resolution)
|
|
417
|
+
-> создать(подсказка, задержка-активации, задержка-деактивации, разрешающая-способность-длительности)
|
|
405
418
|
}
|
|
406
419
|
|
|
407
420
|
// function all(promises: Array<Promise<Object?>>)
|
|
408
421
|
|
|
409
|
-
function pause<T>(timeout)
|
|
410
|
-
|
|
422
|
+
function pause<T>(timeout)
|
|
423
|
+
-> пауза<Т>(длительность)
|
|
411
424
|
|
|
412
425
|
// function proceed-sync-or-async<T>(result: T | Promise<T>, success: function(v): T, failure: function(e)): T | Promise<T>
|
|
413
426
|
|
|
414
|
-
type Merge-List<T>
|
|
427
|
+
type Merge-List<T>
|
|
428
|
+
-> Поверочный-Список<Т>
|
|
415
429
|
{
|
|
416
|
-
get-key
|
|
417
|
-
|
|
430
|
+
get-key
|
|
431
|
+
-> получить-ключ
|
|
418
432
|
|
|
419
|
-
strict
|
|
420
|
-
|
|
433
|
+
strict
|
|
434
|
+
-> строгий-режим
|
|
421
435
|
|
|
422
|
-
map
|
|
423
|
-
|
|
436
|
+
map
|
|
437
|
+
-> словарь
|
|
424
438
|
|
|
425
|
-
tag
|
|
426
|
-
|
|
439
|
+
tag
|
|
440
|
+
-> тег
|
|
427
441
|
|
|
428
|
-
current
|
|
429
|
-
|
|
442
|
+
current
|
|
443
|
+
-> текущие
|
|
430
444
|
|
|
431
|
-
added
|
|
432
|
-
|
|
445
|
+
added
|
|
446
|
+
-> добавленные
|
|
433
447
|
|
|
434
|
-
removed
|
|
435
|
-
|
|
448
|
+
removed
|
|
449
|
+
-> удаленные
|
|
436
450
|
|
|
437
451
|
// last-not-found-key
|
|
438
452
|
|
|
439
|
-
strict-next-item
|
|
440
|
-
|
|
453
|
+
strict-next-item
|
|
454
|
+
-> строгий-следующий-элемент
|
|
441
455
|
|
|
442
|
-
isStrict
|
|
443
|
-
|
|
456
|
+
isStrict
|
|
457
|
+
-> включен-строгий-режим
|
|
444
458
|
|
|
445
|
-
count
|
|
446
|
-
|
|
459
|
+
count
|
|
460
|
+
-> количество
|
|
447
461
|
|
|
448
|
-
added-count
|
|
449
|
-
|
|
462
|
+
added-count
|
|
463
|
+
-> количество-добавленных
|
|
450
464
|
|
|
451
|
-
removed-count
|
|
452
|
-
|
|
465
|
+
removed-count
|
|
466
|
+
-> количество-удалённых
|
|
453
467
|
|
|
454
|
-
is-merge-in-progress
|
|
455
|
-
|
|
468
|
+
is-merge-in-progress
|
|
469
|
+
-> поверка-в-процессе
|
|
456
470
|
|
|
457
|
-
prototype
|
|
458
|
-
|
|
471
|
+
prototype
|
|
472
|
+
-> прототип
|
|
459
473
|
|
|
460
|
-
creation(get-key, strict)
|
|
461
|
-
|
|
474
|
+
creation(get-key, strict)
|
|
475
|
+
-> (получить-ключ, строгий-режим)
|
|
462
476
|
|
|
463
|
-
function lookup(key)
|
|
464
|
-
|
|
477
|
+
function lookup(key)
|
|
478
|
+
-> поиск(ключ)
|
|
465
479
|
|
|
466
|
-
function try-merge-as-existing(key, resolution, 'error')
|
|
467
|
-
|
|
480
|
+
function try-merge-as-existing(key, resolution, 'error')
|
|
481
|
+
-> попытаться-подтвердить-как-существующий(ключ, резолюция, 'ошибка')
|
|
468
482
|
|
|
469
|
-
function merge-as-added(instance)
|
|
470
|
-
|
|
483
|
+
function merge-as-added(instance)
|
|
484
|
+
-> подтвердить-как-добавленный(экземпляр)
|
|
471
485
|
|
|
472
|
-
function merge-as-removed(item)
|
|
473
|
-
|
|
486
|
+
function merge-as-removed(item)
|
|
487
|
+
-> подтвердить-как-удалённый(экземпляр)
|
|
474
488
|
|
|
475
|
-
function move(item, after)
|
|
476
|
-
|
|
489
|
+
function move(item, after)
|
|
490
|
+
-> переместить(элемент, после)
|
|
477
491
|
|
|
478
|
-
function begin-merge()
|
|
479
|
-
|
|
492
|
+
function begin-merge()
|
|
493
|
+
-> начать-поверку()
|
|
480
494
|
|
|
481
|
-
function end-merge('error')
|
|
482
|
-
|
|
495
|
+
function end-merge('error')
|
|
496
|
+
-> закончить-поверку('ошибка')
|
|
483
497
|
|
|
484
|
-
function reset-added-and-removed-lists()
|
|
485
|
-
|
|
498
|
+
function reset-added-and-removed-lists()
|
|
499
|
+
-> очистить-списки-добавленных-и-удалённых()
|
|
486
500
|
|
|
487
|
-
function first-merged-item()
|
|
488
|
-
|
|
501
|
+
function first-merged-item()
|
|
502
|
+
-> первый-поверенный-элемент()
|
|
489
503
|
|
|
490
|
-
function last-merged-item()
|
|
491
|
-
|
|
504
|
+
function last-merged-item()
|
|
505
|
+
-> последний-поверенный-элемент()
|
|
492
506
|
|
|
493
|
-
function items(only-after)
|
|
494
|
-
|
|
507
|
+
function items(only-after)
|
|
508
|
+
-> элементы(только-после)
|
|
495
509
|
|
|
496
|
-
function added-items(reset)
|
|
497
|
-
|
|
510
|
+
function added-items(reset)
|
|
511
|
+
-> добавленные-элементы(сброс)
|
|
498
512
|
|
|
499
|
-
function removed-items(reset)
|
|
500
|
-
|
|
513
|
+
function removed-items(reset)
|
|
514
|
+
-> удалённые-элементы(сброс)
|
|
501
515
|
|
|
502
|
-
function is-added(item)
|
|
503
|
-
|
|
516
|
+
function is-added(item)
|
|
517
|
+
-> был-добавлен(элемент)
|
|
504
518
|
|
|
505
|
-
function is-moved(item)
|
|
506
|
-
|
|
519
|
+
function is-moved(item)
|
|
520
|
+
-> был-перемещён(элемент)
|
|
507
521
|
|
|
508
|
-
function is-removed(item)
|
|
509
|
-
|
|
522
|
+
function is-removed(item)
|
|
523
|
+
-> был-удалён(элемент)
|
|
510
524
|
|
|
511
|
-
function is-actual(item)
|
|
512
|
-
|
|
525
|
+
function is-actual(item)
|
|
526
|
+
-> ещё-актуален(элемент)
|
|
513
527
|
|
|
514
|
-
function mark-as-moved(item)
|
|
515
|
-
|
|
528
|
+
function mark-as-moved(item)
|
|
529
|
+
-> отметить-как-перемещённый(элемент)
|
|
516
530
|
|
|
517
|
-
function create-item<T>(instance)
|
|
518
|
-
|
|
531
|
+
function create-item<T>(instance)
|
|
532
|
+
-> создать-элемент<Т>(экземпляр)
|
|
519
533
|
}
|
|
520
534
|
|
|
521
|
-
type Merged-Item<T>
|
|
535
|
+
type Merged-Item<T>
|
|
536
|
+
-> Поверочный-Элемент<Т>
|
|
522
537
|
{
|
|
523
|
-
instance
|
|
524
|
-
|
|
538
|
+
instance
|
|
539
|
+
-> экземпляр
|
|
525
540
|
|
|
526
|
-
index
|
|
527
|
-
|
|
541
|
+
index
|
|
542
|
+
-> индекс
|
|
528
543
|
|
|
529
|
-
next
|
|
530
|
-
|
|
544
|
+
next
|
|
545
|
+
-> след
|
|
531
546
|
|
|
532
|
-
prev
|
|
533
|
-
|
|
547
|
+
prev
|
|
548
|
+
-> пред
|
|
534
549
|
|
|
535
|
-
aux
|
|
536
|
-
|
|
550
|
+
aux
|
|
551
|
+
-> всп
|
|
537
552
|
}
|
|
538
553
|
|
|
539
|
-
type Merge-List-Reader<T>
|
|
554
|
+
type Merge-List-Reader<T>
|
|
555
|
+
-> Поверочный-Список-Читаемый<Т>
|
|
540
556
|
{
|
|
541
|
-
isStrict
|
|
542
|
-
|
|
557
|
+
isStrict
|
|
558
|
+
-> включен-строгий-режим
|
|
543
559
|
|
|
544
|
-
count
|
|
545
|
-
|
|
560
|
+
count
|
|
561
|
+
-> количество
|
|
546
562
|
|
|
547
|
-
added-count
|
|
548
|
-
|
|
563
|
+
added-count
|
|
564
|
+
-> количество-добавленных
|
|
549
565
|
|
|
550
|
-
removed-count
|
|
551
|
-
|
|
566
|
+
removed-count
|
|
567
|
+
-> количество-удалённых
|
|
552
568
|
|
|
553
|
-
is-merge-in-progress
|
|
554
|
-
|
|
569
|
+
is-merge-in-progress
|
|
570
|
+
-> поверка-в-процессе
|
|
555
571
|
|
|
556
|
-
function lookup(key)
|
|
557
|
-
|
|
572
|
+
function lookup(key)
|
|
573
|
+
-> поиск(ключ)
|
|
558
574
|
|
|
559
575
|
// function tryMergeAsExisting(key, resolution: (aspect { basic isDuplicate })?, 'error'?)
|
|
560
576
|
|
|
561
|
-
function first-merged-item()
|
|
562
|
-
|
|
577
|
+
function first-merged-item()
|
|
578
|
+
-> первый-поверенный-элемент()
|
|
563
579
|
|
|
564
|
-
function last-merged-item()
|
|
565
|
-
|
|
580
|
+
function last-merged-item()
|
|
581
|
+
-> последний-поверенный-элемент()
|
|
566
582
|
|
|
567
|
-
function items(only-after)
|
|
568
|
-
|
|
583
|
+
function items(only-after)
|
|
584
|
+
-> элементы(только-после)
|
|
569
585
|
|
|
570
|
-
function added-items(reset)
|
|
571
|
-
|
|
586
|
+
function added-items(reset)
|
|
587
|
+
-> добавленные-элементы(сброс)
|
|
572
588
|
|
|
573
|
-
function removed-items(reset)
|
|
574
|
-
|
|
589
|
+
function removed-items(reset)
|
|
590
|
+
-> удалённые-элементы(сброс)
|
|
575
591
|
|
|
576
|
-
function is-added(item)
|
|
577
|
-
|
|
592
|
+
function is-added(item)
|
|
593
|
+
-> был-добавлен(элемент)
|
|
578
594
|
|
|
579
|
-
function is-moved(item)
|
|
580
|
-
|
|
595
|
+
function is-moved(item)
|
|
596
|
+
-> был-перемещён(элемент)
|
|
581
597
|
|
|
582
|
-
function is-removed(item)
|
|
583
|
-
|
|
598
|
+
function is-removed(item)
|
|
599
|
+
-> был-удалён(элемент)
|
|
584
600
|
|
|
585
|
-
function is-actual(item)
|
|
586
|
-
|
|
601
|
+
function is-actual(item)
|
|
602
|
+
-> ещё-актуален(элемент)
|
|
587
603
|
}
|
|
588
604
|
|
|
589
|
-
type Sealed-Array<T>
|
|
605
|
+
type Sealed-Array<T>
|
|
606
|
+
-> Запечатанный-Массив<Т>
|
|
590
607
|
{
|
|
591
|
-
prototype
|
|
592
|
-
|
|
608
|
+
prototype
|
|
609
|
+
-> прототип
|
|
593
610
|
|
|
594
|
-
creation(array-length)
|
|
595
|
-
|
|
611
|
+
creation(array-length)
|
|
612
|
+
-> (длина-массива)
|
|
596
613
|
|
|
597
|
-
creation(items)
|
|
598
|
-
|
|
614
|
+
creation(items)
|
|
615
|
+
-> (элементы)
|
|
599
616
|
|
|
600
|
-
function pop()
|
|
601
|
-
|
|
617
|
+
function pop()
|
|
618
|
+
-> изъять()
|
|
602
619
|
|
|
603
|
-
function push(items)
|
|
604
|
-
|
|
620
|
+
function push(items)
|
|
621
|
+
-> добавить-в-конец()
|
|
605
622
|
|
|
606
|
-
function sort(compareFn)
|
|
607
|
-
|
|
623
|
+
function sort(compareFn)
|
|
624
|
+
-> упорядочить(сравнивающаяФункция)
|
|
608
625
|
|
|
609
|
-
function splice(start, deleteCount)
|
|
610
|
-
|
|
626
|
+
function splice(start, deleteCount)
|
|
627
|
+
-> удалить(начало, количество)
|
|
611
628
|
|
|
612
|
-
function unshift(items)
|
|
613
|
-
|
|
629
|
+
function unshift(items)
|
|
630
|
+
-> добавить-в-начало(элементы)
|
|
614
631
|
|
|
615
|
-
function slice(start, end)
|
|
616
|
-
|
|
632
|
+
function slice(start, end)
|
|
633
|
+
-> фрагмент(начало, конец)
|
|
617
634
|
}
|
|
618
635
|
|
|
619
|
-
type Sealed-Map<K, V>
|
|
636
|
+
type Sealed-Map<K, V>
|
|
637
|
+
-> Запечатанный-Словарь<К, З>
|
|
620
638
|
{
|
|
621
|
-
operation clear()
|
|
622
|
-
|
|
639
|
+
operation clear()
|
|
640
|
+
-> очистить()
|
|
623
641
|
|
|
624
|
-
operation delete(key)
|
|
625
|
-
|
|
642
|
+
operation delete(key)
|
|
643
|
+
-> удалить(key)
|
|
626
644
|
|
|
627
|
-
operation 'set'(key, value)
|
|
628
|
-
|
|
645
|
+
operation 'set'(key, value)
|
|
646
|
+
-> установить(key, value)
|
|
629
647
|
|
|
630
|
-
creation(entries)
|
|
631
|
-
|
|
648
|
+
creation(entries)
|
|
649
|
+
-> (элементы)
|
|
632
650
|
|
|
633
|
-
creation(iterable)
|
|
634
|
-
|
|
651
|
+
creation(iterable)
|
|
652
|
+
-> (перебираемое)
|
|
635
653
|
|
|
636
|
-
prototype
|
|
637
|
-
|
|
654
|
+
prototype
|
|
655
|
+
-> прототип
|
|
638
656
|
}
|
|
639
657
|
|
|
640
|
-
type Sealed-Set<T>
|
|
658
|
+
type Sealed-Set<T>
|
|
659
|
+
-> Запечатанное-Множество<Т>
|
|
641
660
|
{
|
|
642
|
-
operation add(value)
|
|
643
|
-
|
|
661
|
+
operation add(value)
|
|
662
|
+
-> добавить(value)
|
|
644
663
|
|
|
645
|
-
operation clear()
|
|
646
|
-
|
|
664
|
+
operation clear()
|
|
665
|
+
-> очистить()
|
|
647
666
|
|
|
648
|
-
operation delete(value)
|
|
649
|
-
|
|
667
|
+
operation delete(value)
|
|
668
|
+
-> удалить(value)
|
|
650
669
|
|
|
651
|
-
creation(values)
|
|
652
|
-
|
|
670
|
+
creation(values)
|
|
671
|
+
-> (значения)
|
|
653
672
|
|
|
654
|
-
creation(iterable)
|
|
655
|
-
|
|
673
|
+
creation(iterable)
|
|
674
|
+
-> (перебираемое)
|
|
656
675
|
|
|
657
|
-
prototype
|
|
658
|
-
|
|
676
|
+
prototype
|
|
677
|
+
-> прототип
|
|
659
678
|
}
|
|
660
679
|
|
|
661
|
-
type Reactive-Operation<T>
|
|
680
|
+
type Reactive-Operation<T>
|
|
681
|
+
-> Реактивная-Операция<Т>
|
|
662
682
|
{
|
|
663
|
-
options
|
|
664
|
-
|
|
683
|
+
options
|
|
684
|
+
-> настройки
|
|
665
685
|
|
|
666
|
-
args
|
|
667
|
-
|
|
686
|
+
args
|
|
687
|
+
-> аргументы
|
|
668
688
|
|
|
669
|
-
result
|
|
670
|
-
|
|
689
|
+
result
|
|
690
|
+
-> результат
|
|
671
691
|
|
|
672
|
-
'error'
|
|
673
|
-
|
|
692
|
+
'error'
|
|
693
|
+
-> 'ошибка'
|
|
674
694
|
|
|
675
|
-
stamp
|
|
676
|
-
|
|
695
|
+
stamp
|
|
696
|
+
-> штамп
|
|
677
697
|
|
|
678
|
-
is-reusable
|
|
679
|
-
|
|
698
|
+
is-reusable
|
|
699
|
+
-> это-используемо-повторно
|
|
680
700
|
|
|
681
|
-
operation configure(options)
|
|
682
|
-
|
|
701
|
+
operation configure(options)
|
|
702
|
+
-> настроить(настройки)
|
|
683
703
|
|
|
684
|
-
operation mark-obsolete()
|
|
685
|
-
|
|
704
|
+
operation mark-obsolete()
|
|
705
|
+
-> пометить-как-устаревшее()
|
|
686
706
|
|
|
687
|
-
operation pull-last-result(args)
|
|
688
|
-
|
|
707
|
+
operation pull-last-result(args)
|
|
708
|
+
-> взять-последний-результат(args)
|
|
689
709
|
}
|
|
690
710
|
|
|
691
|
-
type Ref<T>
|
|
711
|
+
type Ref<T>
|
|
712
|
+
-> Ссылка<Т>
|
|
692
713
|
{
|
|
693
|
-
operation non-reactively()
|
|
694
|
-
|
|
714
|
+
operation non-reactively()
|
|
715
|
+
-> нереактивно()
|
|
695
716
|
|
|
696
|
-
operation observe()
|
|
697
|
-
|
|
717
|
+
operation observe()
|
|
718
|
+
-> наблюдать()
|
|
698
719
|
|
|
699
|
-
operation unobserve()
|
|
700
|
-
|
|
720
|
+
operation unobserve()
|
|
721
|
+
-> не-наблюдать()
|
|
701
722
|
|
|
702
|
-
operation same-refs(v1, v2)
|
|
703
|
-
|
|
723
|
+
operation same-refs(v1, v2)
|
|
724
|
+
-> идентичные-ссылки(в1, в2)
|
|
704
725
|
|
|
705
|
-
operation similar-refs(v1, v2)
|
|
706
|
-
|
|
726
|
+
operation similar-refs(v1, v2)
|
|
727
|
+
-> похожие-ссылки(в1, в2)
|
|
707
728
|
|
|
708
|
-
creation(owner, name, index)
|
|
709
|
-
|
|
729
|
+
creation(owner, name, index)
|
|
730
|
+
-> (владелец, имя, индекс)
|
|
710
731
|
|
|
711
|
-
owner
|
|
712
|
-
|
|
732
|
+
owner
|
|
733
|
+
-> владелец
|
|
713
734
|
|
|
714
|
-
name
|
|
715
|
-
|
|
735
|
+
name
|
|
736
|
+
-> имя
|
|
716
737
|
|
|
717
|
-
index
|
|
718
|
-
|
|
738
|
+
index
|
|
739
|
+
-> индекс
|
|
719
740
|
|
|
720
|
-
variable
|
|
721
|
-
|
|
741
|
+
variable
|
|
742
|
+
-> переменная
|
|
722
743
|
|
|
723
|
-
prototype
|
|
724
|
-
|
|
744
|
+
prototype
|
|
745
|
+
-> прототип
|
|
725
746
|
}
|
|
726
747
|
|
|
727
|
-
type Atomic-Object
|
|
748
|
+
type Atomic-Object
|
|
749
|
+
-> Атомарный-Объект
|
|
728
750
|
{
|
|
729
|
-
prototype
|
|
730
|
-
|
|
751
|
+
prototype
|
|
752
|
+
-> прототип
|
|
731
753
|
}
|
|
732
754
|
|
|
733
|
-
type Observable-Object
|
|
755
|
+
type Observable-Object
|
|
756
|
+
-> Наблюдаемый-Объект
|
|
734
757
|
{
|
|
735
|
-
prototype
|
|
736
|
-
|
|
758
|
+
prototype
|
|
759
|
+
-> прототип
|
|
737
760
|
}
|
|
738
761
|
|
|
739
|
-
type Atomic-Array<T>
|
|
762
|
+
type Atomic-Array<T>
|
|
763
|
+
-> Атомарный-Список<Т>
|
|
740
764
|
{
|
|
741
|
-
prototype
|
|
742
|
-
|
|
765
|
+
prototype
|
|
766
|
+
-> прототип
|
|
743
767
|
|
|
744
|
-
creation(array-length)
|
|
745
|
-
|
|
768
|
+
creation(array-length)
|
|
769
|
+
-> (длина-списка)
|
|
746
770
|
|
|
747
|
-
creation(items)
|
|
748
|
-
|
|
771
|
+
creation(items)
|
|
772
|
+
-> (элементы)
|
|
749
773
|
}
|
|
750
774
|
|
|
751
|
-
type Observable-Array<T>
|
|
775
|
+
type Observable-Array<T>
|
|
776
|
+
-> Наблюдаемый-Список<Т>
|
|
752
777
|
{
|
|
753
|
-
prototype
|
|
778
|
+
prototype
|
|
779
|
+
-> прототип
|
|
754
780
|
|
|
755
|
-
creation(array-length)
|
|
756
|
-
|
|
781
|
+
creation(array-length)
|
|
782
|
+
-> (длина-списка)
|
|
757
783
|
|
|
758
|
-
creation(items)
|
|
759
|
-
|
|
784
|
+
creation(items)
|
|
785
|
+
-> (элементы)
|
|
760
786
|
}
|
|
761
787
|
|
|
762
|
-
type Atomic-Map<K, V>
|
|
788
|
+
type Atomic-Map<K, V>
|
|
789
|
+
-> Атомарный-Словарь<К, З>
|
|
763
790
|
{
|
|
764
|
-
prototype
|
|
765
|
-
|
|
791
|
+
prototype
|
|
792
|
+
-> прототип
|
|
766
793
|
|
|
767
|
-
creation(iterable)
|
|
768
|
-
|
|
794
|
+
creation(iterable)
|
|
795
|
+
-> (перебираемое)
|
|
769
796
|
}
|
|
770
797
|
|
|
771
|
-
type Observable-Map<K, V>
|
|
798
|
+
type Observable-Map<K, V>
|
|
799
|
+
-> Наблюдаемый-Словарь<К, З>
|
|
772
800
|
{
|
|
773
|
-
prototype
|
|
774
|
-
|
|
801
|
+
prototype
|
|
802
|
+
-> прототип
|
|
775
803
|
|
|
776
|
-
creation(iterable)
|
|
777
|
-
|
|
804
|
+
creation(iterable)
|
|
805
|
+
-> (перебираемое)
|
|
778
806
|
}
|
|
779
807
|
|
|
780
|
-
type Changeset
|
|
808
|
+
type Changeset
|
|
809
|
+
-> Набор-Изменений
|
|
781
810
|
{
|
|
782
|
-
id
|
|
783
|
-
|
|
811
|
+
id
|
|
812
|
+
-> идентификатор
|
|
784
813
|
|
|
785
|
-
options
|
|
786
|
-
|
|
814
|
+
options
|
|
815
|
+
-> настройки
|
|
787
816
|
|
|
788
|
-
parent
|
|
789
|
-
|
|
817
|
+
parent
|
|
818
|
+
-> родитель
|
|
790
819
|
|
|
791
|
-
hint
|
|
792
|
-
|
|
820
|
+
hint
|
|
821
|
+
-> подсказка
|
|
793
822
|
|
|
794
|
-
timestamp
|
|
795
|
-
|
|
823
|
+
timestamp
|
|
824
|
+
-> метка-времени
|
|
796
825
|
|
|
797
|
-
items
|
|
798
|
-
|
|
826
|
+
items
|
|
827
|
+
-> элементы
|
|
799
828
|
|
|
800
|
-
obsolete
|
|
801
|
-
|
|
829
|
+
obsolete
|
|
830
|
+
-> устаревшее
|
|
802
831
|
|
|
803
|
-
sealed
|
|
804
|
-
|
|
832
|
+
sealed
|
|
833
|
+
-> запечатано
|
|
805
834
|
|
|
806
|
-
operation lookup-object-version(h, fk, editing)
|
|
807
|
-
|
|
835
|
+
operation lookup-object-version(h, fk, editing)
|
|
836
|
+
-> найти-версию-объекта(аш, фк, редактирование)
|
|
808
837
|
|
|
809
|
-
operation get-object-version(h, fk)
|
|
810
|
-
|
|
838
|
+
operation get-object-version(h, fk)
|
|
839
|
+
-> взять-версию-объекта(аш, фк)
|
|
811
840
|
}
|
|
812
841
|
|
|
813
|
-
type Journal
|
|
842
|
+
type Journal
|
|
843
|
+
-> История-Изменений
|
|
814
844
|
{
|
|
815
|
-
capacity
|
|
816
|
-
|
|
845
|
+
capacity
|
|
846
|
+
-> емкость
|
|
817
847
|
|
|
818
|
-
edits
|
|
819
|
-
|
|
848
|
+
edits
|
|
849
|
+
-> редактирования
|
|
820
850
|
|
|
821
|
-
unsaved
|
|
822
|
-
|
|
851
|
+
unsaved
|
|
852
|
+
-> несохраненное
|
|
823
853
|
|
|
824
|
-
can-undo
|
|
825
|
-
|
|
854
|
+
can-undo
|
|
855
|
+
-> можно-отменить
|
|
826
856
|
|
|
827
|
-
can-redo
|
|
828
|
-
|
|
857
|
+
can-redo
|
|
858
|
+
-> можно-применить-заново
|
|
829
859
|
|
|
830
|
-
prototype
|
|
831
|
-
|
|
860
|
+
prototype
|
|
861
|
+
-> прототип
|
|
832
862
|
|
|
833
|
-
operation edited(patch)
|
|
834
|
-
|
|
863
|
+
operation edited(patch)
|
|
864
|
+
-> отредактировано(патч)
|
|
835
865
|
|
|
836
|
-
operation saved(patch)
|
|
837
|
-
|
|
866
|
+
operation saved(patch)
|
|
867
|
+
-> сохранено(патч)
|
|
838
868
|
|
|
839
|
-
operation undo(count)
|
|
840
|
-
|
|
869
|
+
operation undo(count)
|
|
870
|
+
-> отменить(количество)
|
|
841
871
|
|
|
842
|
-
operation redo(count)
|
|
843
|
-
|
|
872
|
+
operation redo(count)
|
|
873
|
+
-> применить-повторно(количество)
|
|
844
874
|
|
|
845
|
-
operation create()
|
|
846
|
-
|
|
875
|
+
operation create()
|
|
876
|
+
-> создать()
|
|
847
877
|
}
|
|
848
878
|
|
|
849
|
-
type Reactive-Tree-Node<E>
|
|
879
|
+
type Reactive-Tree-Node<E>
|
|
880
|
+
-> Реактивный-Узел-Дерева<Э>
|
|
850
881
|
{
|
|
851
|
-
key
|
|
852
|
-
|
|
882
|
+
key
|
|
883
|
+
-> ключ
|
|
853
884
|
|
|
854
|
-
driver
|
|
855
|
-
|
|
885
|
+
driver
|
|
886
|
+
-> драйвер
|
|
856
887
|
|
|
857
|
-
declaration
|
|
858
|
-
|
|
888
|
+
declaration
|
|
889
|
+
-> декларация
|
|
859
890
|
|
|
860
|
-
level
|
|
861
|
-
|
|
891
|
+
level
|
|
892
|
+
-> уровень
|
|
862
893
|
|
|
863
|
-
owner
|
|
864
|
-
|
|
894
|
+
owner
|
|
895
|
+
-> владелец
|
|
865
896
|
|
|
866
|
-
element
|
|
867
|
-
|
|
897
|
+
element
|
|
898
|
+
-> элемент
|
|
868
899
|
|
|
869
|
-
host
|
|
870
|
-
|
|
900
|
+
host
|
|
901
|
+
-> управляющий
|
|
871
902
|
|
|
872
|
-
children
|
|
873
|
-
|
|
903
|
+
children
|
|
904
|
+
-> подчинённые
|
|
874
905
|
|
|
875
|
-
slot
|
|
876
|
-
|
|
906
|
+
slot
|
|
907
|
+
-> слот
|
|
877
908
|
|
|
878
|
-
stamp
|
|
879
|
-
|
|
909
|
+
stamp
|
|
910
|
+
-> штамп
|
|
880
911
|
|
|
881
|
-
outer
|
|
882
|
-
|
|
912
|
+
outer
|
|
913
|
+
-> наружное
|
|
883
914
|
|
|
884
|
-
context
|
|
885
|
-
|
|
915
|
+
context
|
|
916
|
+
-> контекст
|
|
886
917
|
|
|
887
|
-
priority
|
|
888
|
-
|
|
918
|
+
priority
|
|
919
|
+
-> приоритет
|
|
889
920
|
|
|
890
|
-
children-shuffling
|
|
891
|
-
|
|
921
|
+
children-shuffling
|
|
922
|
+
-> перемешивание-подчинённых
|
|
892
923
|
|
|
893
|
-
strict-order
|
|
894
|
-
|
|
924
|
+
strict-order
|
|
925
|
+
-> строгий-порядок
|
|
895
926
|
|
|
896
|
-
prototype
|
|
897
|
-
|
|
927
|
+
prototype
|
|
928
|
+
-> прототип
|
|
898
929
|
|
|
899
|
-
function
|
|
900
|
-
|
|
930
|
+
function get-uri()
|
|
931
|
+
-> получить-uri(режим)
|
|
901
932
|
|
|
902
|
-
function
|
|
903
|
-
|
|
933
|
+
function has(mode)
|
|
934
|
+
-> имеет(режим)
|
|
904
935
|
|
|
905
|
-
|
|
906
|
-
|
|
936
|
+
function configure-reactivity(options)
|
|
937
|
+
-> настроить-реактивность(настройки)
|
|
907
938
|
|
|
908
|
-
|
|
909
|
-
|
|
939
|
+
short-frame-duration
|
|
940
|
+
-> продолжительность-короткого-кадра
|
|
910
941
|
|
|
911
|
-
|
|
912
|
-
|
|
942
|
+
long-frame-duration
|
|
943
|
+
-> продолжительность-длинного-кадра
|
|
913
944
|
|
|
914
|
-
|
|
915
|
-
|
|
945
|
+
current-script-priority
|
|
946
|
+
-> приоритет-текущего-сценария
|
|
916
947
|
|
|
917
|
-
|
|
918
|
-
|
|
948
|
+
frame-duration
|
|
949
|
+
-> продолжительность-кадра
|
|
919
950
|
|
|
920
|
-
|
|
921
|
-
|
|
951
|
+
is-first-script-run
|
|
952
|
+
-> это-первое-выполнение-сценария
|
|
922
953
|
|
|
923
|
-
|
|
924
|
-
|
|
954
|
+
current
|
|
955
|
+
-> текущий
|
|
925
956
|
|
|
926
|
-
function declare<E>(driver,
|
|
927
|
-
|
|
957
|
+
function declare<E>(driver, script, script-async, key, mode, preparation, preparation-async, finalization, triggers, basis)
|
|
958
|
+
-> декларировать<Э>(драйвер, сценарий, сценарий-асин, ключ, режим, подготовка, подготовка-асин, завершение, триггеры, базис)
|
|
928
959
|
|
|
929
|
-
function declare<E>(driver,
|
|
930
|
-
|
|
960
|
+
function declare<E>(driver, declaration)
|
|
961
|
+
-> декларировать<Э>(драйвер, декларация)
|
|
931
962
|
|
|
932
|
-
function
|
|
933
|
-
|
|
963
|
+
function declare<E>(driver, script-or-declaration, script-async, key, mode, preparation, preparation-async, finalization, triggers, basis)
|
|
964
|
+
-> декларировать<Э>(драйвер, сценарий, сценарий-асин, ключ, режим, подготовка, подготовка-асин, завершение, триггеры, базис)
|
|
934
965
|
|
|
935
|
-
function
|
|
936
|
-
|
|
966
|
+
function withBasis<E>(declaration, basis)
|
|
967
|
+
-> с-базисом(декларация, базис)
|
|
937
968
|
|
|
938
|
-
function trigger-
|
|
939
|
-
|
|
969
|
+
function trigger-script-run(node, triggers)
|
|
970
|
+
-> спровоцировать-выполнение-сценария(узел, триггеры)
|
|
940
971
|
|
|
941
|
-
function
|
|
942
|
-
|
|
972
|
+
function trigger-finalization(node)
|
|
973
|
+
-> спровоцировать-завершение(узел)
|
|
943
974
|
|
|
944
|
-
function
|
|
945
|
-
|
|
975
|
+
function run-nested-node-scripts-then-do(action)
|
|
976
|
+
-> выполнить-сценарии-вложенных-узлов-и-затем-сделать(действие)
|
|
946
977
|
|
|
947
|
-
function
|
|
948
|
-
|
|
978
|
+
function mark-as-mounted(node, 'yes')
|
|
979
|
+
-> отметить-как-монтированный(узел, 'да')
|
|
949
980
|
|
|
950
|
-
function
|
|
951
|
-
|
|
981
|
+
function lookup-tree-node-by-uri<E>(uri)
|
|
982
|
+
-> найти-узел-дерева-по-uri<Э>(uri)
|
|
952
983
|
|
|
953
|
-
function
|
|
954
|
-
|
|
984
|
+
function find-matching-host<E, R>(node, match)
|
|
985
|
+
-> найти-подходящего-управляющего<Э, Р>(узел, условие)
|
|
955
986
|
|
|
956
|
-
function
|
|
957
|
-
|
|
987
|
+
function find-matching-prev-sibling<E, R>(node, match)
|
|
988
|
+
-> найти-подходящего-предшествующего-смежника<Э, Р>(узел, условие)
|
|
958
989
|
|
|
959
|
-
function
|
|
960
|
-
|
|
990
|
+
function for-each-child-recursively<E>(node, action)
|
|
991
|
+
-> для-каждого-подчинённого-рекурсивно<Э>(узел, действие)
|
|
992
|
+
|
|
993
|
+
function get-default-logging-options()
|
|
994
|
+
-> получить-настройки-журнализации-по-умолчанию()
|
|
995
|
+
|
|
996
|
+
function set-default-logging-options(logging)
|
|
997
|
+
-> установить-настройки-журнализации-по-умолчанию(настройки)
|
|
961
998
|
}
|
|
962
999
|
|
|
963
|
-
type Base-Driver<E>
|
|
1000
|
+
type Base-Driver<E>
|
|
1001
|
+
-> Базовый-Драйвер<Э>
|
|
964
1002
|
{
|
|
965
|
-
name
|
|
966
|
-
|
|
1003
|
+
name
|
|
1004
|
+
-> имя
|
|
967
1005
|
|
|
968
|
-
is-partition
|
|
969
|
-
|
|
1006
|
+
is-partition
|
|
1007
|
+
-> это-раздел
|
|
970
1008
|
|
|
971
|
-
initialize
|
|
972
|
-
|
|
1009
|
+
initialize
|
|
1010
|
+
-> подготовить
|
|
973
1011
|
|
|
974
|
-
prototype
|
|
975
|
-
|
|
1012
|
+
prototype
|
|
1013
|
+
-> прототип
|
|
976
1014
|
|
|
977
|
-
creation(name, is-partition, initialize)
|
|
978
|
-
|
|
1015
|
+
creation(name, is-partition, initialize)
|
|
1016
|
+
-> (имя, это-раздел, подготовить)
|
|
979
1017
|
|
|
980
|
-
function create(node)
|
|
981
|
-
|
|
1018
|
+
function create(node)
|
|
1019
|
+
-> создать(узел)
|
|
982
1020
|
|
|
983
|
-
function run-preparation(node)
|
|
984
|
-
|
|
1021
|
+
function run-preparation(node)
|
|
1022
|
+
-> выполнить-подготовку(узел)
|
|
985
1023
|
|
|
986
|
-
function run-finalization(node, is-leader)
|
|
987
|
-
|
|
1024
|
+
function run-finalization(node, is-leader)
|
|
1025
|
+
-> выполнить-завершение(узел, это-лидер)
|
|
988
1026
|
|
|
989
|
-
function run-mount(node)
|
|
990
|
-
|
|
1027
|
+
function run-mount(node)
|
|
1028
|
+
-> выполнить-монтаж(узел)
|
|
991
1029
|
|
|
992
|
-
function run-script(node)
|
|
993
|
-
|
|
1030
|
+
function run-script(node)
|
|
1031
|
+
-> выполнить-сценарий(узел)
|
|
994
1032
|
|
|
995
|
-
function declare-child(owner-node, child-driver, child-declaration, child-basis)
|
|
996
|
-
|
|
1033
|
+
function declare-child(owner-node, child-driver, child-declaration, child-basis)
|
|
1034
|
+
-> задекларировать-подчинённого(узел-владелец, подчинённый-драйвер, подчинённая-декларация, подчинённая-основа)
|
|
997
1035
|
|
|
998
|
-
function provide-host(node)
|
|
999
|
-
|
|
1036
|
+
function provide-host(node)
|
|
1037
|
+
-> предоставить-управляющего(узел)
|
|
1000
1038
|
}
|
|
1001
1039
|
|
|
1002
|
-
type Reactive-Tree-Variable<T>
|
|
1040
|
+
type Reactive-Tree-Variable<T>
|
|
1041
|
+
-> Переменная-Реактивного-Дерева<Т>
|
|
1003
1042
|
{
|
|
1004
|
-
defaultValue
|
|
1005
|
-
|
|
1043
|
+
defaultValue
|
|
1044
|
+
-> значение-по-умолчанию
|
|
1006
1045
|
|
|
1007
|
-
value
|
|
1008
|
-
|
|
1046
|
+
value
|
|
1047
|
+
-> значение
|
|
1009
1048
|
|
|
1010
|
-
valueOrUndefined
|
|
1011
|
-
|
|
1049
|
+
valueOrUndefined
|
|
1050
|
+
-> значение-или-пусто
|
|
1012
1051
|
|
|
1013
|
-
prototype
|
|
1014
|
-
|
|
1052
|
+
prototype
|
|
1053
|
+
-> прототип
|
|
1015
1054
|
|
|
1016
|
-
creation(defaultValue)
|
|
1017
|
-
|
|
1055
|
+
creation(defaultValue)
|
|
1056
|
+
-> (значение-по-умолчанию)
|
|
1018
1057
|
}
|
|
1019
1058
|
|
|
1020
|
-
type Script<E>(el, basis)
|
|
1059
|
+
type Script<E>(el, basis)
|
|
1060
|
+
-> Сценарий<Э>(эл, базис)
|
|
1021
1061
|
|
|
1022
|
-
type ScriptAsync<E>(el, basis)
|
|
1062
|
+
type ScriptAsync<E>(el, basis)
|
|
1063
|
+
-> СценарийАсин<Э>(эл, базис)
|
|
1023
1064
|
|
|
1024
|
-
type Handler<E, R>(el)
|
|
1065
|
+
type Handler<E, R>(el)
|
|
1066
|
+
-> Обработчик<Э, Р>(эл)
|
|
1025
1067
|
|
|
1026
|
-
type Reactive-Tree-Node-Decl<E>
|
|
1068
|
+
type Reactive-Tree-Node-Decl<E>
|
|
1069
|
+
-> Декл-Реактивного-Узла-Дерева<Э>
|
|
1027
1070
|
{
|
|
1028
|
-
script
|
|
1029
|
-
|
|
1071
|
+
script
|
|
1072
|
+
-> сценарий
|
|
1030
1073
|
|
|
1031
|
-
script-async
|
|
1032
|
-
|
|
1074
|
+
script-async
|
|
1075
|
+
-> сценарий-асин
|
|
1033
1076
|
|
|
1034
|
-
key
|
|
1035
|
-
|
|
1077
|
+
key
|
|
1078
|
+
-> ключ
|
|
1036
1079
|
|
|
1037
|
-
mode
|
|
1038
|
-
|
|
1080
|
+
mode
|
|
1081
|
+
-> режим
|
|
1039
1082
|
|
|
1040
|
-
preparation
|
|
1041
|
-
|
|
1083
|
+
preparation
|
|
1084
|
+
-> подготовка
|
|
1042
1085
|
|
|
1043
|
-
preparation-async
|
|
1044
|
-
|
|
1086
|
+
preparation-async
|
|
1087
|
+
-> подготовка-асин
|
|
1045
1088
|
|
|
1046
|
-
finalization
|
|
1047
|
-
|
|
1089
|
+
finalization
|
|
1090
|
+
-> завершение
|
|
1048
1091
|
|
|
1049
|
-
triggers
|
|
1050
|
-
|
|
1092
|
+
triggers
|
|
1093
|
+
-> триггеры
|
|
1051
1094
|
|
|
1052
|
-
basis
|
|
1053
|
-
|
|
1095
|
+
basis
|
|
1096
|
+
-> 'основа'
|
|
1054
1097
|
}
|
|
1055
1098
|
|
|
1056
|
-
type Reactive-Tree-Node-Driver<E>
|
|
1099
|
+
type Reactive-Tree-Node-Driver<E>
|
|
1100
|
+
-> Драйвер-Реактивного-Узла-Дерева<Э>
|
|
1057
1101
|
{
|
|
1058
|
-
name
|
|
1059
|
-
|
|
1102
|
+
name
|
|
1103
|
+
-> имя
|
|
1060
1104
|
|
|
1061
|
-
is-partition
|
|
1062
|
-
|
|
1105
|
+
is-partition
|
|
1106
|
+
-> это-раздел
|
|
1063
1107
|
|
|
1064
|
-
initialize
|
|
1065
|
-
|
|
1108
|
+
initialize
|
|
1109
|
+
-> подготовить
|
|
1066
1110
|
|
|
1067
|
-
function create(node)
|
|
1068
|
-
|
|
1111
|
+
function create(node)
|
|
1112
|
+
-> создать(узел)
|
|
1069
1113
|
|
|
1070
|
-
function run-preparation(node)
|
|
1071
|
-
|
|
1114
|
+
function run-preparation(node)
|
|
1115
|
+
-> выполнить-подготовку(узел)
|
|
1072
1116
|
|
|
1073
|
-
function run-finalization(node, is-leader)
|
|
1074
|
-
|
|
1117
|
+
function run-finalization(node, is-leader)
|
|
1118
|
+
-> выполнить-завершение(узел, это-лидер)
|
|
1075
1119
|
|
|
1076
|
-
function run-mount(node)
|
|
1077
|
-
|
|
1120
|
+
function run-mount(node)
|
|
1121
|
+
-> выполнить-монтаж(узел)
|
|
1078
1122
|
|
|
1079
|
-
function run-script(node)
|
|
1080
|
-
|
|
1123
|
+
function run-script(node)
|
|
1124
|
+
-> выполнить-сценарий(узел)
|
|
1081
1125
|
|
|
1082
|
-
function declare-child(owner-node, child-driver, child-declaration, child-basis)
|
|
1083
|
-
|
|
1126
|
+
function declare-child(owner-node, child-driver, child-declaration, child-basis)
|
|
1127
|
+
-> задекларировать-подчинённого(узел-владелец, подчинённый-драйвер, подчинённая-декларация, подчинённая-основа)
|
|
1084
1128
|
|
|
1085
|
-
function provide-host(node)
|
|
1086
|
-
|
|
1129
|
+
function provide-host(node)
|
|
1130
|
+
-> предоставить-управляющего(узел)
|
|
1087
1131
|
}
|
|
1088
1132
|
|
|
1089
|
-
type Reactive-Tree-Node-Context<T>
|
|
1133
|
+
type Reactive-Tree-Node-Context<T>
|
|
1134
|
+
-> Контекст-Реактивного-Узла-Дерева<Т>
|
|
1090
1135
|
{
|
|
1091
|
-
value
|
|
1092
|
-
|
|
1136
|
+
value
|
|
1137
|
+
-> значение
|
|
1093
1138
|
}
|
|
1094
1139
|
}
|