подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.
This commit is contained in:
parent
2c27a64ea0
commit
73f3735bb6
54 changed files with 1579 additions and 342 deletions
31
docfiles/libraries/v2/base.js
Normal file
31
docfiles/libraries/v2/base.js
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
*
|
||||
* @class base
|
||||
* @memberof v2
|
||||
* @param _type {number}
|
||||
*/
|
||||
function base(_type) {
|
||||
|
||||
}
|
||||
|
||||
base.prototype = {
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function type
|
||||
* @memberof v2.base
|
||||
* @returns {number}
|
||||
*/
|
||||
type: function () {}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @access static
|
||||
* @function instance_of
|
||||
* @memberof v2.base
|
||||
* @param instance {v2}
|
||||
*/
|
||||
base.instance_of = function (instance) {
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue