подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.

This commit is contained in:
Aleksey Chichenkov 2018-09-25 15:14:18 +03:00
parent 2c27a64ea0
commit 73f3735bb6
54 changed files with 1579 additions and 342 deletions

View file

@ -1,3 +1,5 @@
/** @typedef {Trees.GlobalTree.Node.Children} NodeChildren */
/**
* Интерфейс позволяющей пользователю работать с потомками ноды
*
@ -29,7 +31,7 @@ function Children() {
*
* @public
* @function get
* @returns {v2.list(v2.integer.type)}
* @returns {v2.list(v2.integer)}
* @memberof Trees.GlobalTree.Node.Children
*/
this.children = function(attributeName) {

View file

@ -63,7 +63,7 @@ function Node() {
* Доступ к менеджеру детей
* @public
* @function cm
* @returns {Children}
* @returns {NodeChildren}
* @memberof Trees.GlobalTree.Node
*/
this.cm = function() {

View file

@ -1,4 +1,4 @@
/** @typedef {Trees.GlobalTree.Node.NodeTypes.NodeType} NodeType
/** @typedef {Trees.GlobalTree.Node.NodeTypes.NodeType} NodeType */
/**
*