remove .idea

This commit is contained in:
Aleksey Chichenkov 2018-09-20 13:53:30 +03:00
parent 91736dbbaf
commit e5798a7576
6 changed files with 29 additions and 25 deletions

12
.idea/docs.iml generated
View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
.idea/modules.xml generated
View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/docs.iml" filepath="$PROJECT_DIR$/.idea/docs.iml" />
</modules>
</component>
</project>

View File

@ -118,13 +118,14 @@ string.prototype = {
"+=": function (_o) {}, "+=": function (_o) {},
/** /**
* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum
* *
* @public * @public
* @function assign * @function assign
* @memberof v2.string * @memberof v2.string
* @param {v2.string} _string * @param {v2.string} _string asdfasfasdf
* @param {number} _first * @param {number} _first afasdfasdfasdf
* @param {number} _last * @param {number} _last asdfasfdasdfas
* @returns {this} * @returns {this}
*/ */
assign: function (_string, _first, _last) {}, assign: function (_string, _first, _last) {},

View File

@ -69,7 +69,7 @@ function Attributes() {
* *
* @public * @public
* @function attributes * @function attributes
* @returns {v2.map(v2.string.type, v2.vc.type)} * @returns {v2.map(v2.string, v2.vc)}
* @memberof Trees.GlobalAttributeTree.Node.Attributes * @memberof Trees.GlobalAttributeTree.Node.Attributes
*/ */
this.attributes = function() { this.attributes = function() {

View File

@ -9,12 +9,16 @@ var path = require('jsdoc/path');
var taffy = require('taffydb').taffy; var taffy = require('taffydb').taffy;
var template = require('jsdoc/template'); var template = require('jsdoc/template');
var util = require('util'); var util = require('util');
var pct = require('./static/scripts/parse_complex_type');
var htmlsafe = helper.htmlsafe; var htmlsafe = helper.htmlsafe;
var linkto = helper.linkto; var linkto = pct.linkto;
var resolveAuthorLinks = helper.resolveAuthorLinks; var resolveAuthorLinks = helper.resolveAuthorLinks;
var hasOwnProp = Object.prototype.hasOwnProperty; var hasOwnProp = Object.prototype.hasOwnProperty;
var data; var data;
var view; var view;

View File

@ -0,0 +1,19 @@
/**
* Created by Aleksey Chichenkov <a.chichenkov@initi.ru> on 9/20/18.
*/
var helper = require('jsdoc/util/templateHelper');
// var linkto = helper.linkto;
var linkto = function (_id, _alias, _class) {
// ns.longname, ns.name, "menu-title"
var rx = /(.*?)\((.*)\)/im;
// /_id.match(rx);
return helper.linkto(_id, _alias, _class);
};
module.exports = {
linkto: linkto
};