-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnoscript-bosphorus.yate
65 lines (58 loc) · 2.36 KB
/
noscript-bosphorus.yate
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* Мост в JS для вызова метода вида
* @private
*/
external nodeset _ns-view-call(nodeset, scalar, nodeset, nodeset, nodeset, nodeset, nodeset)
/**
* Мост в JS для вызова методов моделей вида
* @private
*/
external nodeset _ns-model-call(nodeset, scalar, scalar, nodeset, nodeset, nodeset, nodeset, nodeset)
/**
* Мост в JS для вызова метода вида
* @private
*/
external nodeset _ns-view-call-scalar(nodeset, scalar, scalar, nodeset, nodeset, nodeset, nodeset)
/**
* Мост в JS для вызова методов моделей вида
* @private
*/
external nodeset _ns-model-call-scalar(nodeset, scalar, scalar, scalar, nodeset, nodeset, nodeset, nodeset)
/**
* Вызывает methodName текущего вида
* @param {string} methodName Название метода
* @param {...*} Аргументы
* @returns nodeset
*/
func ns-view-call(scalar methodName, nodeset p1, nodeset p2, nodeset p3, nodeset p4, nodeset p5) {
_ns-view-call(/, methodName, p1, p2, p3, p4, p5)
}
/**
* Вызывает methodName у модели modelName
* @param {string} modelName Название модели
* @param {string} methodName Название модели
* @param {...*} Аргументы
* @returns nodeset
*/
func ns-model-call(scalar modelName, scalar methodName, nodeset p1, nodeset p2, nodeset p3, nodeset p4, nodeset p5) {
_ns-model-call(/, modelName, methodName, p1, p2, p3, p4, p5)
}
/**
* Вызывает methodName текущего вида с первым параметром-скаляром
* @param {string} methodName Название метода
* @param {...*} Аргументы
* @returns nodeset
*/
func ns-view-call-scalar(scalar methodName, scalar p1, nodeset p2, nodeset p3, nodeset p4, nodeset p5) {
_ns-view-call-scalar(/, methodName, p1, p2, p3, p4, p5)
}
/**
* Вызывает methodName у модели modelName с первым параметром-скаляром
* @param {string} modelName Название модели
* @param {string} methodName Название модели
* @param {...*} Аргументы
* @returns nodeset
*/
func ns-model-call-scalar(scalar modelName, scalar methodName, scalar p1, nodeset p2, nodeset p3, nodeset p4, nodeset p5) {
_ns-model-call-scalar(/, modelName, methodName, p1, p2, p3, p4, p5)
}