add show list methods

This commit is contained in:
Aleksey Chichenkov 2018-09-19 17:14:17 +03:00
parent 4f9a2237a1
commit 27369c00b3
5 changed files with 320 additions and 681 deletions

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ integer.prototype = {
* @public
* @function =
* @memberof v2.integer
* @prarm {v2.integer} _o
* @param {v2.integer} _o
* @returns {this}
*/
"=": function (_o) {},
@ -25,7 +25,7 @@ integer.prototype = {
* @public
* @function -=
* @memberof v2.integer
* @prarm {v2.integer} _o
* @param {v2.integer} _o
* @returns {this}
*/
"-=": function (_o) {},
@ -36,7 +36,7 @@ integer.prototype = {
* @public
* @function -
* @memberof v2.integer
* @prarm {v2.integer} _o
* @param {v2.integer} _o
* @returns {this}
*/
"-": function (_o) {},

View File

@ -14,7 +14,7 @@ string.prototype = {
* @public
* @function =
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {this}
*/
"=": function (_o) {},
@ -35,7 +35,7 @@ string.prototype = {
* @public
* @function <
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {boolean}
*/
"<": function (_o) {},
@ -46,7 +46,7 @@ string.prototype = {
* @public
* @function <=
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {boolean}
*/
"<=": function (_o) {},
@ -57,7 +57,7 @@ string.prototype = {
* @public
* @function ==
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {boolean}
*/
"==": function (_o) {},
@ -68,7 +68,7 @@ string.prototype = {
* @public
* @function ==
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {boolean}
*/
"!=": function (_o) {},
@ -79,7 +79,7 @@ string.prototype = {
* @public
* @function >
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {boolean}
*/
">": function (_o) {},
@ -90,7 +90,7 @@ string.prototype = {
* @public
* @function >=
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {boolean}
*/
">=": function (_o) {},
@ -101,7 +101,7 @@ string.prototype = {
* @public
* @function +
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {v2.string}
*/
"+": function (_o) {},
@ -112,7 +112,7 @@ string.prototype = {
* @public
* @function +=
* @memberof v2.string
* @prarm {v2.string} _o
* @param {v2.string} _o
* @returns {this}
*/
"+=": function (_o) {},
@ -122,9 +122,9 @@ string.prototype = {
* @public
* @function assign
* @memberof v2.string
* @prarm {v2.string} _string
* @prarm {number} _first
* @prarm {number} _last
* @param {v2.string} _string
* @param {number} _first
* @param {number} _last
* @returns {this}
*/
assign: function (_string, _first, _last) {},
@ -134,7 +134,7 @@ string.prototype = {
* @public
* @function at
* @memberof v2.string
* @prarm {number} _index
* @param {number} _index
* @returns {string}
*/
at: function (_index) {},
@ -144,7 +144,7 @@ string.prototype = {
* @public
* @function back
* @memberof v2.string
* @prarm {number} _index
* @param {number} _index
* @returns {string}
*/
back: function (_index) {}

View File

@ -14,15 +14,22 @@
font-weight: normal;
font-family: 'Open Sans', sans-serif !important;
}
.min-methods .list .compact-method .access{}
.min-methods .list .compact-method .access{
padding-right: 10px;
}
.min-methods .list .compact-method .name{
color: #0137ff;
font-size: 24px;
font-weight: normal;
display: inline-block;
min-width: 70px;
}
.min-methods .list .compact-method .params {
}
.min-methods .list .compact-method .param {
font-weight: normal;
}
@ -34,12 +41,14 @@
.min-methods .list .compact-method .param .type .left-quad-bracket{}
.min-methods .list .compact-method .param .type .name{
color: #3d7700;
font-size: 20px;
font-size: 19px;
min-width: initial;
}
.min-methods .list .compact-method .param .type .right-quad-bracket{}
.min-methods .list .compact-method .param .name{
color: #383838;
font-size: 20px;
min-width: initial;
}
.min-methods .list .compact-method .returns{}
@ -50,4 +59,5 @@
color: #5aa30e;
font-size: 20px;
font-weight: normal;
min-width: initial;
}

View File

@ -23,7 +23,7 @@ var self = this;
<span class="param">
<span class="type">
<span class="left-quad-bracket">[ </span>
<span class="name"><?js= type ?></span>
<span class="name"><?js= this.linkto(type, type) ?></span>
<span class="right-quad-bracket"> ]</span>
</span>
<span class="name"><?js= param.name ?></span><?js if(a < data.params.length - 1) { ?>,<?js } ?>
@ -43,7 +43,7 @@ var self = this;
<span class="returns">
<span class="arrow"> → </span>
<span class="left-figure-bracket">{</span>
<span class="name"><?js= rets ?></span>
<span class="name"><?js= this.linkto(rets, rets) ?></span>
<span class="right-figure-bracket">}</span>
</span>
<?js } ?>