add show list methods
This commit is contained in:
parent
4f9a2237a1
commit
27369c00b3
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ integer.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function =
|
* @function =
|
||||||
* @memberof v2.integer
|
* @memberof v2.integer
|
||||||
* @prarm {v2.integer} _o
|
* @param {v2.integer} _o
|
||||||
* @returns {this}
|
* @returns {this}
|
||||||
*/
|
*/
|
||||||
"=": function (_o) {},
|
"=": function (_o) {},
|
||||||
@ -25,7 +25,7 @@ integer.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function -=
|
* @function -=
|
||||||
* @memberof v2.integer
|
* @memberof v2.integer
|
||||||
* @prarm {v2.integer} _o
|
* @param {v2.integer} _o
|
||||||
* @returns {this}
|
* @returns {this}
|
||||||
*/
|
*/
|
||||||
"-=": function (_o) {},
|
"-=": function (_o) {},
|
||||||
@ -36,7 +36,7 @@ integer.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function -
|
* @function -
|
||||||
* @memberof v2.integer
|
* @memberof v2.integer
|
||||||
* @prarm {v2.integer} _o
|
* @param {v2.integer} _o
|
||||||
* @returns {this}
|
* @returns {this}
|
||||||
*/
|
*/
|
||||||
"-": function (_o) {},
|
"-": function (_o) {},
|
||||||
|
@ -14,7 +14,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function =
|
* @function =
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {this}
|
* @returns {this}
|
||||||
*/
|
*/
|
||||||
"=": function (_o) {},
|
"=": function (_o) {},
|
||||||
@ -35,7 +35,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function <
|
* @function <
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
"<": function (_o) {},
|
"<": function (_o) {},
|
||||||
@ -46,7 +46,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function <=
|
* @function <=
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
"<=": function (_o) {},
|
"<=": function (_o) {},
|
||||||
@ -57,7 +57,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function ==
|
* @function ==
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
"==": function (_o) {},
|
"==": function (_o) {},
|
||||||
@ -68,7 +68,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function ==
|
* @function ==
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
"!=": function (_o) {},
|
"!=": function (_o) {},
|
||||||
@ -79,7 +79,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function >
|
* @function >
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
">": function (_o) {},
|
">": function (_o) {},
|
||||||
@ -90,7 +90,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function >=
|
* @function >=
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
">=": function (_o) {},
|
">=": function (_o) {},
|
||||||
@ -101,7 +101,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function +
|
* @function +
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {v2.string}
|
* @returns {v2.string}
|
||||||
*/
|
*/
|
||||||
"+": function (_o) {},
|
"+": function (_o) {},
|
||||||
@ -112,7 +112,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function +=
|
* @function +=
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _o
|
* @param {v2.string} _o
|
||||||
* @returns {this}
|
* @returns {this}
|
||||||
*/
|
*/
|
||||||
"+=": function (_o) {},
|
"+=": function (_o) {},
|
||||||
@ -122,9 +122,9 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function assign
|
* @function assign
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {v2.string} _string
|
* @param {v2.string} _string
|
||||||
* @prarm {number} _first
|
* @param {number} _first
|
||||||
* @prarm {number} _last
|
* @param {number} _last
|
||||||
* @returns {this}
|
* @returns {this}
|
||||||
*/
|
*/
|
||||||
assign: function (_string, _first, _last) {},
|
assign: function (_string, _first, _last) {},
|
||||||
@ -134,7 +134,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function at
|
* @function at
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {number} _index
|
* @param {number} _index
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
at: function (_index) {},
|
at: function (_index) {},
|
||||||
@ -144,7 +144,7 @@ string.prototype = {
|
|||||||
* @public
|
* @public
|
||||||
* @function back
|
* @function back
|
||||||
* @memberof v2.string
|
* @memberof v2.string
|
||||||
* @prarm {number} _index
|
* @param {number} _index
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
back: function (_index) {}
|
back: function (_index) {}
|
||||||
|
@ -14,15 +14,22 @@
|
|||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-family: 'Open Sans', sans-serif !important;
|
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{
|
.min-methods .list .compact-method .name{
|
||||||
color: #0137ff;
|
color: #0137ff;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 70px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.min-methods .list .compact-method .params {
|
||||||
|
}
|
||||||
|
|
||||||
.min-methods .list .compact-method .param {
|
.min-methods .list .compact-method .param {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
@ -34,12 +41,14 @@
|
|||||||
.min-methods .list .compact-method .param .type .left-quad-bracket{}
|
.min-methods .list .compact-method .param .type .left-quad-bracket{}
|
||||||
.min-methods .list .compact-method .param .type .name{
|
.min-methods .list .compact-method .param .type .name{
|
||||||
color: #3d7700;
|
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 .type .right-quad-bracket{}
|
||||||
.min-methods .list .compact-method .param .name{
|
.min-methods .list .compact-method .param .name{
|
||||||
color: #383838;
|
color: #383838;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
min-width: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
.min-methods .list .compact-method .returns{}
|
.min-methods .list .compact-method .returns{}
|
||||||
@ -50,4 +59,5 @@
|
|||||||
color: #5aa30e;
|
color: #5aa30e;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
min-width: initial;
|
||||||
}
|
}
|
@ -23,7 +23,7 @@ var self = this;
|
|||||||
<span class="param">
|
<span class="param">
|
||||||
<span class="type">
|
<span class="type">
|
||||||
<span class="left-quad-bracket">[ </span>
|
<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 class="right-quad-bracket"> ]</span>
|
||||||
</span>
|
</span>
|
||||||
<span class="name"><?js= param.name ?></span><?js if(a < data.params.length - 1) { ?>,<?js } ?>
|
<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="returns">
|
||||||
<span class="arrow"> → </span>
|
<span class="arrow"> → </span>
|
||||||
<span class="left-figure-bracket">{</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 class="right-figure-bracket">}</span>
|
||||||
</span>
|
</span>
|
||||||
<?js } ?>
|
<?js } ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user