diff --git a/.gitignore b/.gitignore
index 123ae94d..ca21307e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,78 @@
+#### joe made this: https://goel.io/joe
+
+#####=== JetBrains ===#####
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
+
+*.iml
+
+## Directory-based project format:
+.idea/
+# if you remove the above rule, at least ignore the following:
+
+# User-specific stuff:
+# .idea/workspace.xml
+# .idea/tasks.xml
+# .idea/dictionaries
+
+# Sensitive or high-churn files:
+# .idea/dataSources.ids
+# .idea/dataSources.xml
+# .idea/sqlDataSources.xml
+# .idea/dynamic.xml
+# .idea/uiDesigner.xml
+
+# Gradle:
+# .idea/gradle.xml
+# .idea/libraries
+
+# Mongo Explorer plugin:
+# .idea/mongoSettings.xml
+
+## File-based project format:
+*.ipr
+*.iws
+
+## Plugin-specific files:
+
+# IntelliJ
+out/
+
+# mpeltonen/sbt-idea plugin
+.idea_modules/
+
+# JIRA plugin
+atlassian-ide-plugin.xml
+
+# Crashlytics plugin (for Android Studio and IntelliJ)
+com_crashlytics_export_strings.xml
+crashlytics.properties
+crashlytics-build.properties
+
+#####=== OSX ===#####
+.DS_Store
+.AppleDouble
+.LSOverride
+
+# Icon must end with two \r
+Icon
+
+
+# Thumbnails
+._*
+
+# Files that might appear on external disk
+.Spotlight-V100
+.Trashes
+
+# Directories potentially created on remote AFP share
+.AppleDB
+.AppleDesktop
+Network Trash Folder
+Temporary Items
+.apdisk
+
+#####=== Node ===#####
+
# Logs
logs
*.log
@@ -23,5 +98,13 @@ coverage
build/Release
# Dependency directory
-# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
+# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules
+
+# Debug log from npm
+npm-debug.log
+
+
+#####=== Proprietary ===#####
+lib.compiled
+/tests/*
\ No newline at end of file
diff --git a/.jscs.json b/.jscs.json
new file mode 100644
index 00000000..a52911fe
--- /dev/null
+++ b/.jscs.json
@@ -0,0 +1,3 @@
+{
+ "preset": "airbnb"
+}
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..52c9558a
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,31 @@
+language: node_js
+sudo: false
+node_js:
+- '0.12'
+
+cache:
+ directories:
+ - "$(npm root -g)"
+
+branches:
+ only:
+ - master
+ - stage
+ - test
+ - dev
+
+before_install:
+- npm install -g babel
+- npm install -g browserify
+- npm install -g mocha
+- npm install -g mocha-babel
+- npm install -g istanbul
+- npm install -g coveralls
+- npm install -g codacy-coverage
+- npm install -g istanbul-combine
+- cp test/package.json .
+- test/bin/setup_npm.sh
+
+after_success:
+- npm run coverage
+
diff --git a/LICENSE b/LICENSE
index 2d5011e0..e3604507 100644
--- a/LICENSE
+++ b/LICENSE
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-
diff --git a/bin/_head.sh b/bin/_head.sh
new file mode 100644
index 00000000..63528e34
--- /dev/null
+++ b/bin/_head.sh
@@ -0,0 +1,39 @@
+#!/usr/bin/env bash
+
+path=$(cd $(dirname $0); pwd -P)
+npm=$(which npm)
+esdoc=$(which esdoc)
+
+publish_npm_package() {
+ name=$(basename $1)
+
+ echo "Publishing "${name}
+
+ if [ -z $2 ] || ! $2; then
+ cd $1 && rm -rf node_modules/ && npm install && ${npm} version $3 && ${npm} publish
+ else
+ cd $1 && ${npm} version $3
+ fi
+}
+
+escape_sed() {
+ echo $(echo $1 | sed -e 's/[\/&]/\\&/g')
+}
+
+assure_esdoc() {
+ if [ -z ${esdoc} ]; then
+ echo "Installing esdoc..."
+ ${npm} install -g esdoc
+
+ esdoc=$(which esdoc)
+ fi
+}
+
+assure_npm() {
+ if [ -z ${npm} ]; then
+ echo "Installing nodejs..."
+ brew install nodejs
+
+ npm=$(which npm)
+ fi
+}
diff --git a/bin/gen_api_docs.sh b/bin/gen_api_docs.sh
new file mode 100755
index 00000000..3258adeb
--- /dev/null
+++ b/bin/gen_api_docs.sh
@@ -0,0 +1,31 @@
+#!/usr/bin/env bash
+
+source $(dirname $0)/_head.sh
+
+assure_npm
+assure_esdoc
+
+ESDOC_CFG_TPL='{"index": "{readme}","source": "{src}","destination": "{dest}","includes": ["\\.(js|es6)$"],"title": "{title}", "package": "{pkg}"}'
+
+DOCS_BASEPATH=${path}/../docs-api
+
+for lib in ${path}/../src/deep-*/; do
+ name=$(basename ${lib})
+ lib=$(cd ${lib}; pwd -P)
+
+ lib_path=$(escape_sed ${lib}/lib)
+ raw_docs_path=${DOCS_BASEPATH}/${name}
+ docs_path=$(escape_sed ${raw_docs_path})
+ npm_pkg=$(escape_sed ${lib}/package.json)
+ readme=$(escape_sed ${lib}/README.md)
+ pck_name=$(node -e "console.log(require('$npm_pkg').description)")
+
+ if [ ${name} != 'deep-framework' ]; then
+ tmp_esdoc_cfg=$(mktemp)
+ esdoc_cfg=$(echo ${ESDOC_CFG_TPL} | sed "s/{src}/$lib_path/" | sed "s/{dest}/$docs_path/" | sed "s/{title}/$pck_name/" | sed "s/{pkg}/$npm_pkg/" | sed "s/{readme}/$readme/")
+
+ echo ${esdoc_cfg} > ${tmp_esdoc_cfg}
+
+ ${esdoc} -c ${tmp_esdoc_cfg}
+ fi
+done
diff --git a/bin/install_precommit.sh b/bin/install_precommit.sh
new file mode 100755
index 00000000..34e429d3
--- /dev/null
+++ b/bin/install_precommit.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/env bash
+
+source $(dirname $0)/_head.sh
+jscs=`which jscs`
+
+if [ -z ${jscs} ]; then
+ assure_npm
+
+ ${npm} -g install jscs
+fi
+
+if [ -f ${path}/../.git/hooks/pre-commit ]; then
+ cp ${path}/../.git/hooks/pre-commit ${path}/../.git/hooks/pre-commit_$(date +%F-%H%M%S).bak
+fi
+
+cp ${path}/pre-commit ${path}/../.git/hooks/.
diff --git a/bin/pre-commit b/bin/pre-commit
new file mode 100755
index 00000000..05107f3b
--- /dev/null
+++ b/bin/pre-commit
@@ -0,0 +1,33 @@
+#!/usr/bin/env bash
+
+files=$(git diff --cached --name-only --diff-filter=ACM | egrep "^lib/(.)+/lib/(.)+\.js$|^microservice/(.)+/Backend/src/(.)+\.es6$|^src/(.)+/lib/(.)+\.js$")
+
+if [ "$files" = "" ]; then
+ exit 0
+fi
+
+pass=true
+
+echo -e "\nValidating JavaScript:\n"
+
+for file in ${files}; do
+ output=$(jscs ${file} --config=./.jscs.json)
+
+ jscs_run_result=$(echo $?)
+
+ if [ ${jscs_run_result} -eq 0 ]; then
+ echo -e "\t\033[32mJSCS Passed: ${file}\033[0m"
+ else
+ echo -e "\t\033[31mJSCS Failed: ${file}\033[0m"
+ pass=false
+ fi
+done
+
+echo -e "\nJavaScript validation complete\n"
+
+if ! $pass; then
+ echo -e "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass JSCS but do not. Please fix the JSCS errors and try again.\n"
+ exit 1
+else
+ echo -e "\033[42mCOMMIT SUCCEEDED\033[0m\n"
+fi
diff --git a/bin/publish.sh b/bin/publish.sh
new file mode 100755
index 00000000..93866a5a
--- /dev/null
+++ b/bin/publish.sh
@@ -0,0 +1,72 @@
+#!/usr/bin/env bash
+
+source $(dirname $0)/_head.sh
+
+assure_npm
+
+DRY_RUN=false
+HELP=false
+PACKAGE_PATH=""
+VERSION_TYPE="patch"
+
+for i in "$@"
+do
+ case ${i} in
+ --patch)
+ VERSION_TYPE="patch"
+ ;;
+ --minor)
+ VERSION_TYPE="minor"
+ ;;
+ --major)
+ VERSION_TYPE="major"
+ ;;
+ --help)
+ HELP=true
+ ;;
+ --dry-run)
+ DRY_RUN=true
+ ;;
+ *)
+ PACKAGE_PATH=${i}
+ ;;
+ esac
+
+ shift
+done
+
+if ${HELP}; then
+ echo "-------------------------------------------------------------------"
+ echo "Usage example: bin/publish.sh src/deep-db --dry-run"
+ echo ""
+ echo "Arguments and options:"
+ echo " src/deep-db The path to the certain package to be published"
+ echo " --dry-run Skip uploading packages to NPM registry"
+ echo "-------------------------------------------------------------------"
+ exit 0
+fi
+
+if ${DRY_RUN}; then
+ echo ""
+ echo "Dry run mode on!!!"
+ echo ""
+fi
+
+if [ -z ${PACKAGE_PATH} ]; then
+ publish_npm_package ${path}/../src/deep-core/ ${DRY_RUN} ${VERSION_TYPE}
+ publish_npm_package ${path}/../src/deep-di/ ${DRY_RUN} ${VERSION_TYPE}
+ publish_npm_package ${path}/../src/deep-kernel/ ${DRY_RUN} ${VERSION_TYPE}
+ publish_npm_package ${path}/../src/deep-validation/ ${DRY_RUN} ${VERSION_TYPE}
+
+ for src in ${path}/../src/deep-*/; do
+ name=$(basename ${src})
+
+ if [ ${name} != 'deep-framework' ] && [ ${name} != 'deep-core' ] && [ ${name} != 'deep-di' ] && [ ${name} != 'deep-kernel' ] && [ ${name} != 'deep-validation' ]; then
+ publish_npm_package ${src} ${DRY_RUN} ${VERSION_TYPE}
+ fi
+ done
+
+ publish_npm_package ${path}/../src/deep-framework/ ${DRY_RUN} ${VERSION_TYPE}
+else
+ publish_npm_package ${PACKAGE_PATH} ${DRY_RUN} ${VERSION_TYPE}
+fi
diff --git a/bin/remove_node_modules.sh b/bin/remove_node_modules.sh
new file mode 100755
index 00000000..2085e3e6
--- /dev/null
+++ b/bin/remove_node_modules.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+__SCRIPT_PATH=$(cd $(dirname $0); pwd -P)
+
+for path in $__SCRIPT_PATH/../*/*/node_modules
+do
+ echo "Removed "${path}
+ rm -rf ${path}
+done
diff --git a/docs-api/deep-asset/ast/source/Asset.js.json b/docs-api/deep-asset/ast/source/Asset.js.json
new file mode 100644
index 00000000..42d095c8
--- /dev/null
+++ b/docs-api/deep-asset/ast/source/Asset.js.json
@@ -0,0 +1,2954 @@
+{
+ "type": "Program",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "Literal",
+ "value": "use strict",
+ "raw": "'use strict'",
+ "range": [
+ 42,
+ 54
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 12
+ }
+ }
+ },
+ "range": [
+ 42,
+ 55
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 13
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Created by mgoria on 5/28/15.\n ",
+ "range": [
+ 0,
+ 40
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportDefaultSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Kernel",
+ "range": [
+ 64,
+ 70
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 13
+ }
+ }
+ },
+ "range": [
+ 64,
+ 70
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 13
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "deep-kernel",
+ "raw": "'deep-kernel'",
+ "range": [
+ 76,
+ 89
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 19
+ },
+ "end": {
+ "line": 7,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 57,
+ 90
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 33
+ }
+ }
+ },
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportDefaultSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Path",
+ "range": [
+ 98,
+ 102
+ ],
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 7
+ },
+ "end": {
+ "line": 8,
+ "column": 11
+ }
+ }
+ },
+ "range": [
+ 98,
+ 102
+ ],
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 7
+ },
+ "end": {
+ "line": 8,
+ "column": 11
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "path",
+ "raw": "'path'",
+ "range": [
+ 108,
+ 114
+ ],
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 17
+ },
+ "end": {
+ "line": 8,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 91,
+ 115
+ ],
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 24
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * @temp Asset class definition\n ",
+ "range": [
+ 117,
+ 156
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 0
+ },
+ "end": {
+ "line": 12,
+ "column": 3
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExportNamedDeclaration",
+ "declaration": {
+ "type": "ClassDeclaration",
+ "id": {
+ "type": "Identifier",
+ "name": "Asset",
+ "range": [
+ 170,
+ 175
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 13
+ },
+ "end": {
+ "line": 13,
+ "column": 18
+ }
+ }
+ },
+ "superClass": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Kernel",
+ "range": [
+ 184,
+ 190
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 27
+ },
+ "end": {
+ "line": 13,
+ "column": 33
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "ContainerAware",
+ "range": [
+ 191,
+ 205
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 34
+ },
+ "end": {
+ "line": 13,
+ "column": 48
+ }
+ }
+ },
+ "range": [
+ 184,
+ 205
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 27
+ },
+ "end": {
+ "line": 13,
+ "column": 48
+ }
+ }
+ },
+ "body": {
+ "type": "ClassBody",
+ "body": [
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "constructor",
+ "range": [
+ 210,
+ 221
+ ],
+ "loc": {
+ "start": {
+ "line": 14,
+ "column": 2
+ },
+ "end": {
+ "line": 14,
+ "column": 13
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Super",
+ "range": [
+ 230,
+ 235
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 4
+ },
+ "end": {
+ "line": 15,
+ "column": 9
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 230,
+ 237
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 4
+ },
+ "end": {
+ "line": 15,
+ "column": 11
+ }
+ }
+ },
+ "range": [
+ 230,
+ 238
+ ],
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 4
+ },
+ "end": {
+ "line": 15,
+ "column": 12
+ }
+ }
+ }
+ ],
+ "range": [
+ 224,
+ 242
+ ],
+ "loc": {
+ "start": {
+ "line": 14,
+ "column": 16
+ },
+ "end": {
+ "line": 16,
+ "column": 3
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 221,
+ 242
+ ],
+ "loc": {
+ "start": {
+ "line": 14,
+ "column": 13
+ },
+ "end": {
+ "line": 16,
+ "column": 3
+ }
+ }
+ },
+ "kind": "constructor",
+ "computed": false,
+ "range": [
+ 210,
+ 242
+ ],
+ "loc": {
+ "start": {
+ "line": 14,
+ "column": 2
+ },
+ "end": {
+ "line": 16,
+ "column": 3
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Booting a certain service\n *\n * @param {Kernel} kernel\n * @param {Function} callback\n ",
+ "range": [
+ 246,
+ 351
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 2
+ },
+ "end": {
+ "line": 23,
+ "column": 5
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "boot",
+ "range": [
+ 354,
+ 358
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 2
+ },
+ "end": {
+ "line": 24,
+ "column": 6
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "kernel",
+ "range": [
+ 359,
+ 365
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 7
+ },
+ "end": {
+ "line": 24,
+ "column": 13
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "callback",
+ "range": [
+ 367,
+ 375
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 15
+ },
+ "end": {
+ "line": 24,
+ "column": 23
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "kernel",
+ "range": [
+ 387,
+ 393
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isFrontend",
+ "range": [
+ 394,
+ 404
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 15
+ },
+ "end": {
+ "line": 25,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 387,
+ 404
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 8
+ },
+ "end": {
+ "line": 25,
+ "column": 25
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "loadVector",
+ "range": [
+ 418,
+ 428
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 10
+ },
+ "end": {
+ "line": 26,
+ "column": 20
+ }
+ }
+ },
+ "init": {
+ "type": "ArrayExpression",
+ "elements": [],
+ "range": [
+ 431,
+ 433
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 23
+ },
+ "end": {
+ "line": 26,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 418,
+ 433
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 10
+ },
+ "end": {
+ "line": 26,
+ "column": 25
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 414,
+ 434
+ ],
+ "loc": {
+ "start": {
+ "line": 26,
+ "column": 6
+ },
+ "end": {
+ "line": 26,
+ "column": 26
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "microservices",
+ "range": [
+ 445,
+ 458
+ ],
+ "loc": {
+ "start": {
+ "line": 27,
+ "column": 10
+ },
+ "end": {
+ "line": 27,
+ "column": 23
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "kernel",
+ "range": [
+ 461,
+ 467
+ ],
+ "loc": {
+ "start": {
+ "line": 27,
+ "column": 26
+ },
+ "end": {
+ "line": 27,
+ "column": 32
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "microservices",
+ "range": [
+ 468,
+ 481
+ ],
+ "loc": {
+ "start": {
+ "line": 27,
+ "column": 33
+ },
+ "end": {
+ "line": 27,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 461,
+ 481
+ ],
+ "loc": {
+ "start": {
+ "line": 27,
+ "column": 26
+ },
+ "end": {
+ "line": 27,
+ "column": 46
+ }
+ }
+ },
+ "range": [
+ 445,
+ 481
+ ],
+ "loc": {
+ "start": {
+ "line": 27,
+ "column": 10
+ },
+ "end": {
+ "line": 27,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 441,
+ 482
+ ],
+ "loc": {
+ "start": {
+ "line": 27,
+ "column": 6
+ },
+ "end": {
+ "line": 27,
+ "column": 47
+ }
+ }
+ },
+ {
+ "type": "ForInStatement",
+ "left": {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "microserviceKey",
+ "range": [
+ 499,
+ 514
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 15
+ },
+ "end": {
+ "line": 29,
+ "column": 30
+ }
+ }
+ },
+ "init": null,
+ "range": [
+ 499,
+ 514
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 15
+ },
+ "end": {
+ "line": 29,
+ "column": 30
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 495,
+ 514
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 11
+ },
+ "end": {
+ "line": 29,
+ "column": 30
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "microservices",
+ "range": [
+ 518,
+ 531
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 34
+ },
+ "end": {
+ "line": 29,
+ "column": 47
+ }
+ }
+ },
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "UnaryExpression",
+ "operator": "!",
+ "argument": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "microservices",
+ "range": [
+ 548,
+ 561
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 13
+ },
+ "end": {
+ "line": 30,
+ "column": 26
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "hasOwnProperty",
+ "range": [
+ 562,
+ 576
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 27
+ },
+ "end": {
+ "line": 30,
+ "column": 41
+ }
+ }
+ },
+ "range": [
+ 548,
+ 576
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 13
+ },
+ "end": {
+ "line": 30,
+ "column": 41
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "microserviceKey",
+ "range": [
+ 577,
+ 592
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 42
+ },
+ "end": {
+ "line": 30,
+ "column": 57
+ }
+ }
+ }
+ ],
+ "range": [
+ 548,
+ 593
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 13
+ },
+ "end": {
+ "line": 30,
+ "column": 58
+ }
+ }
+ },
+ "prefix": true,
+ "range": [
+ 547,
+ 593
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 12
+ },
+ "end": {
+ "line": 30,
+ "column": 58
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ContinueStatement",
+ "label": null,
+ "range": [
+ 607,
+ 616
+ ],
+ "loc": {
+ "start": {
+ "line": 31,
+ "column": 10
+ },
+ "end": {
+ "line": 31,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 595,
+ 626
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 60
+ },
+ "end": {
+ "line": 32,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 543,
+ 626
+ ],
+ "loc": {
+ "start": {
+ "line": 30,
+ "column": 8
+ },
+ "end": {
+ "line": 32,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "microservice",
+ "range": [
+ 640,
+ 652
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 12
+ },
+ "end": {
+ "line": 34,
+ "column": 24
+ }
+ }
+ },
+ "init": {
+ "type": "MemberExpression",
+ "computed": true,
+ "object": {
+ "type": "Identifier",
+ "name": "microservices",
+ "range": [
+ 655,
+ 668
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 27
+ },
+ "end": {
+ "line": 34,
+ "column": 40
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "microserviceKey",
+ "range": [
+ 669,
+ 684
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 41
+ },
+ "end": {
+ "line": 34,
+ "column": 56
+ }
+ }
+ },
+ "range": [
+ 655,
+ 685
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 27
+ },
+ "end": {
+ "line": 34,
+ "column": 57
+ }
+ }
+ },
+ "range": [
+ 640,
+ 685
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 12
+ },
+ "end": {
+ "line": 34,
+ "column": 57
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 636,
+ 686
+ ],
+ "loc": {
+ "start": {
+ "line": 34,
+ "column": 8
+ },
+ "end": {
+ "line": 34,
+ "column": 58
+ }
+ }
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "microservice",
+ "range": [
+ 700,
+ 712
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 12
+ },
+ "end": {
+ "line": 36,
+ "column": 24
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isRoot",
+ "range": [
+ 713,
+ 719
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 25
+ },
+ "end": {
+ "line": 36,
+ "column": 31
+ }
+ }
+ },
+ "range": [
+ 700,
+ 719
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 12
+ },
+ "end": {
+ "line": 36,
+ "column": 31
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ContinueStatement",
+ "label": null,
+ "range": [
+ 733,
+ 742
+ ],
+ "loc": {
+ "start": {
+ "line": 37,
+ "column": 10
+ },
+ "end": {
+ "line": 37,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 721,
+ 752
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 33
+ },
+ "end": {
+ "line": 38,
+ "column": 9
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 696,
+ 752
+ ],
+ "loc": {
+ "start": {
+ "line": 36,
+ "column": 8
+ },
+ "end": {
+ "line": 38,
+ "column": 9
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "loadVector",
+ "range": [
+ 762,
+ 772
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 8
+ },
+ "end": {
+ "line": 40,
+ "column": 18
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "push",
+ "range": [
+ 773,
+ 777
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 19
+ },
+ "end": {
+ "line": 40,
+ "column": 23
+ }
+ }
+ },
+ "range": [
+ 762,
+ 777
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 8
+ },
+ "end": {
+ "line": 40,
+ "column": 23
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 778,
+ 782
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 24
+ },
+ "end": {
+ "line": 40,
+ "column": 28
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "bind",
+ "range": [
+ 783,
+ 787
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 29
+ },
+ "end": {
+ "line": 40,
+ "column": 33
+ }
+ }
+ },
+ "range": [
+ 778,
+ 787
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 24
+ },
+ "end": {
+ "line": 40,
+ "column": 33
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "microservice",
+ "range": [
+ 788,
+ 800
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 34
+ },
+ "end": {
+ "line": 40,
+ "column": 46
+ }
+ }
+ }
+ ],
+ "range": [
+ 778,
+ 801
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 24
+ },
+ "end": {
+ "line": 40,
+ "column": 47
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "locate",
+ "range": [
+ 802,
+ 808
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 48
+ },
+ "end": {
+ "line": 40,
+ "column": 54
+ }
+ }
+ },
+ "range": [
+ 778,
+ 808
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 24
+ },
+ "end": {
+ "line": 40,
+ "column": 54
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Literal",
+ "value": "bootstrap.js",
+ "raw": "'bootstrap.js'",
+ "range": [
+ 809,
+ 823
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 55
+ },
+ "end": {
+ "line": 40,
+ "column": 69
+ }
+ }
+ }
+ ],
+ "range": [
+ 778,
+ 824
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 24
+ },
+ "end": {
+ "line": 40,
+ "column": 70
+ }
+ }
+ }
+ ],
+ "range": [
+ 762,
+ 825
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 8
+ },
+ "end": {
+ "line": 40,
+ "column": 71
+ }
+ }
+ },
+ "range": [
+ 762,
+ 826
+ ],
+ "loc": {
+ "start": {
+ "line": 40,
+ "column": 8
+ },
+ "end": {
+ "line": 40,
+ "column": 72
+ }
+ }
+ }
+ ],
+ "range": [
+ 533,
+ 834
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 49
+ },
+ "end": {
+ "line": 41,
+ "column": 7
+ }
+ }
+ },
+ "each": false,
+ "range": [
+ 490,
+ 834
+ ],
+ "loc": {
+ "start": {
+ "line": 29,
+ "column": 6
+ },
+ "end": {
+ "line": 41,
+ "column": 7
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "kernel",
+ "range": [
+ 842,
+ 848
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 6
+ },
+ "end": {
+ "line": 43,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "container",
+ "range": [
+ 849,
+ 858
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 13
+ },
+ "end": {
+ "line": 43,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 842,
+ 858
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 6
+ },
+ "end": {
+ "line": 43,
+ "column": 22
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "addParameter",
+ "range": [
+ 859,
+ 871
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 23
+ },
+ "end": {
+ "line": 43,
+ "column": 35
+ }
+ }
+ },
+ "range": [
+ 842,
+ 871
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 6
+ },
+ "end": {
+ "line": 43,
+ "column": 35
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Kernel",
+ "range": [
+ 881,
+ 887
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 14
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "FRONTEND_BOOTSTRAP_VECTOR",
+ "range": [
+ 888,
+ 913
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 15
+ },
+ "end": {
+ "line": 44,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 881,
+ 913
+ ],
+ "loc": {
+ "start": {
+ "line": 44,
+ "column": 8
+ },
+ "end": {
+ "line": 44,
+ "column": 40
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "loadVector",
+ "range": [
+ 923,
+ 933
+ ],
+ "loc": {
+ "start": {
+ "line": 45,
+ "column": 8
+ },
+ "end": {
+ "line": 45,
+ "column": 18
+ }
+ }
+ }
+ ],
+ "range": [
+ 842,
+ 941
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 6
+ },
+ "end": {
+ "line": 46,
+ "column": 7
+ }
+ }
+ },
+ "range": [
+ 842,
+ 942
+ ],
+ "loc": {
+ "start": {
+ "line": 43,
+ "column": 6
+ },
+ "end": {
+ "line": 46,
+ "column": 8
+ }
+ }
+ }
+ ],
+ "range": [
+ 406,
+ 948
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 27
+ },
+ "end": {
+ "line": 47,
+ "column": 5
+ }
+ }
+ },
+ "alternate": null,
+ "range": [
+ 383,
+ 948
+ ],
+ "loc": {
+ "start": {
+ "line": 25,
+ "column": 4
+ },
+ "end": {
+ "line": 47,
+ "column": 5
+ }
+ }
+ },
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Identifier",
+ "name": "callback",
+ "range": [
+ 954,
+ 962
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 4
+ },
+ "end": {
+ "line": 49,
+ "column": 12
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 954,
+ 964
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 4
+ },
+ "end": {
+ "line": 49,
+ "column": 14
+ }
+ }
+ },
+ "range": [
+ 954,
+ 965
+ ],
+ "loc": {
+ "start": {
+ "line": 49,
+ "column": 4
+ },
+ "end": {
+ "line": 49,
+ "column": 15
+ }
+ }
+ }
+ ],
+ "range": [
+ 377,
+ 969
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 25
+ },
+ "end": {
+ "line": 50,
+ "column": 3
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 358,
+ 969
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 6
+ },
+ "end": {
+ "line": 50,
+ "column": 3
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 354,
+ 969
+ ],
+ "loc": {
+ "start": {
+ "line": 24,
+ "column": 2
+ },
+ "end": {
+ "line": 50,
+ "column": 3
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Booting a certain service\n *\n * @param {Kernel} kernel\n * @param {Function} callback\n ",
+ "range": [
+ 246,
+ 351
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 2
+ },
+ "end": {
+ "line": 23,
+ "column": 5
+ }
+ }
+ }
+ ],
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * @param {String} object\n * @param {String} suffix\n * @returns {String}\n ",
+ "range": [
+ 973,
+ 1061
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 2
+ },
+ "end": {
+ "line": 56,
+ "column": 5
+ }
+ }
+ }
+ ],
+ "static": false
+ },
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "locate",
+ "range": [
+ 1064,
+ 1070
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 2
+ },
+ "end": {
+ "line": 57,
+ "column": 8
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "Identifier",
+ "name": "object",
+ "range": [
+ 1071,
+ 1077
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 9
+ },
+ "end": {
+ "line": 57,
+ "column": 15
+ }
+ }
+ },
+ {
+ "type": "AssignmentPattern",
+ "left": {
+ "type": "Identifier",
+ "name": "suffix",
+ "range": [
+ 1079,
+ 1085
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 17
+ },
+ "end": {
+ "line": 57,
+ "column": 23
+ }
+ }
+ },
+ "right": {
+ "type": "Literal",
+ "value": "",
+ "raw": "''",
+ "range": [
+ 1088,
+ 1090
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 26
+ },
+ "end": {
+ "line": 57,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 1079,
+ 1090
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 17
+ },
+ "end": {
+ "line": 57,
+ "column": 28
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "path",
+ "range": [
+ 1169,
+ 1173
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 12
+ }
+ }
+ },
+ "init": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1176,
+ 1180
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 15
+ },
+ "end": {
+ "line": 59,
+ "column": 19
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "_resolvePath",
+ "range": [
+ 1181,
+ 1193
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 20
+ },
+ "end": {
+ "line": 59,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 1176,
+ 1193
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 15
+ },
+ "end": {
+ "line": 59,
+ "column": 32
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "object",
+ "range": [
+ 1194,
+ 1200
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 33
+ },
+ "end": {
+ "line": 59,
+ "column": 39
+ }
+ }
+ }
+ ],
+ "range": [
+ 1176,
+ 1201
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 15
+ },
+ "end": {
+ "line": 59,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 1169,
+ 1201
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 8
+ },
+ "end": {
+ "line": 59,
+ "column": 40
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 1165,
+ 1202
+ ],
+ "loc": {
+ "start": {
+ "line": 59,
+ "column": 4
+ },
+ "end": {
+ "line": 59,
+ "column": 41
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Line",
+ "value": " binds working microservice if specified in object parameter",
+ "range": [
+ 1098,
+ 1160
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 4
+ },
+ "end": {
+ "line": 58,
+ "column": 66
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "IfStatement",
+ "test": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1212,
+ 1216
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 8
+ },
+ "end": {
+ "line": 61,
+ "column": 12
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "microservice",
+ "range": [
+ 1217,
+ 1229
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 13
+ },
+ "end": {
+ "line": 61,
+ "column": 25
+ }
+ }
+ },
+ "range": [
+ 1212,
+ 1229
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 8
+ },
+ "end": {
+ "line": 61,
+ "column": 25
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "isRoot",
+ "range": [
+ 1230,
+ 1236
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 26
+ },
+ "end": {
+ "line": 61,
+ "column": 32
+ }
+ }
+ },
+ "range": [
+ 1212,
+ 1236
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 8
+ },
+ "end": {
+ "line": 61,
+ "column": 32
+ }
+ }
+ },
+ "consequent": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Path",
+ "range": [
+ 1253,
+ 1257
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 13
+ },
+ "end": {
+ "line": 62,
+ "column": 17
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "join",
+ "range": [
+ 1258,
+ 1262
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 18
+ },
+ "end": {
+ "line": 62,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 1253,
+ 1262
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 13
+ },
+ "end": {
+ "line": 62,
+ "column": 22
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "Identifier",
+ "name": "path",
+ "range": [
+ 1263,
+ 1267
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 23
+ },
+ "end": {
+ "line": 62,
+ "column": 27
+ }
+ }
+ }
+ ],
+ "range": [
+ 1253,
+ 1268
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 13
+ },
+ "end": {
+ "line": 62,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "suffix",
+ "range": [
+ 1271,
+ 1277
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 31
+ },
+ "end": {
+ "line": 62,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 1253,
+ 1277
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 13
+ },
+ "end": {
+ "line": 62,
+ "column": 37
+ }
+ }
+ },
+ "range": [
+ 1246,
+ 1278
+ ],
+ "loc": {
+ "start": {
+ "line": 62,
+ "column": 6
+ },
+ "end": {
+ "line": 62,
+ "column": 38
+ }
+ }
+ }
+ ],
+ "range": [
+ 1238,
+ 1284
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 34
+ },
+ "end": {
+ "line": 63,
+ "column": 5
+ }
+ }
+ },
+ "alternate": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ReturnStatement",
+ "argument": {
+ "type": "BinaryExpression",
+ "operator": "+",
+ "left": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Path",
+ "range": [
+ 1305,
+ 1309
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 13
+ },
+ "end": {
+ "line": 64,
+ "column": 17
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "join",
+ "range": [
+ 1310,
+ 1314
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 18
+ },
+ "end": {
+ "line": 64,
+ "column": 22
+ }
+ }
+ },
+ "range": [
+ 1305,
+ 1314
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 13
+ },
+ "end": {
+ "line": 64,
+ "column": 22
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "CallExpression",
+ "callee": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "ThisExpression",
+ "range": [
+ 1315,
+ 1319
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 23
+ },
+ "end": {
+ "line": 64,
+ "column": 27
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "microservice",
+ "range": [
+ 1320,
+ 1332
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 28
+ },
+ "end": {
+ "line": 64,
+ "column": 40
+ }
+ }
+ },
+ "range": [
+ 1315,
+ 1332
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 23
+ },
+ "end": {
+ "line": 64,
+ "column": 40
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "toString",
+ "range": [
+ 1333,
+ 1341
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 41
+ },
+ "end": {
+ "line": 64,
+ "column": 49
+ }
+ }
+ },
+ "range": [
+ 1315,
+ 1341
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 23
+ },
+ "end": {
+ "line": 64,
+ "column": 49
+ }
+ }
+ },
+ "arguments": [],
+ "range": [
+ 1315,
+ 1343
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 23
+ },
+ "end": {
+ "line": 64,
+ "column": 51
+ }
+ }
+ },
+ {
+ "type": "Identifier",
+ "name": "path",
+ "range": [
+ 1345,
+ 1349
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 53
+ },
+ "end": {
+ "line": 64,
+ "column": 57
+ }
+ }
+ }
+ ],
+ "range": [
+ 1305,
+ 1350
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 13
+ },
+ "end": {
+ "line": 64,
+ "column": 58
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "suffix",
+ "range": [
+ 1353,
+ 1359
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 61
+ },
+ "end": {
+ "line": 64,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 1305,
+ 1359
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 13
+ },
+ "end": {
+ "line": 64,
+ "column": 67
+ }
+ }
+ },
+ "range": [
+ 1298,
+ 1360
+ ],
+ "loc": {
+ "start": {
+ "line": 64,
+ "column": 6
+ },
+ "end": {
+ "line": 64,
+ "column": 68
+ }
+ }
+ }
+ ],
+ "range": [
+ 1290,
+ 1366
+ ],
+ "loc": {
+ "start": {
+ "line": 63,
+ "column": 11
+ },
+ "end": {
+ "line": 65,
+ "column": 5
+ }
+ }
+ },
+ "range": [
+ 1208,
+ 1366
+ ],
+ "loc": {
+ "start": {
+ "line": 61,
+ "column": 4
+ },
+ "end": {
+ "line": 65,
+ "column": 5
+ }
+ }
+ }
+ ],
+ "range": [
+ 1092,
+ 1370
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 30
+ },
+ "end": {
+ "line": 66,
+ "column": 3
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 1070,
+ 1370
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 8
+ },
+ "end": {
+ "line": 66,
+ "column": 3
+ }
+ }
+ },
+ "kind": "method",
+ "computed": false,
+ "range": [
+ 1064,
+ 1370
+ ],
+ "loc": {
+ "start": {
+ "line": 57,
+ "column": 2
+ },
+ "end": {
+ "line": 66,
+ "column": 3
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * @param {String} object\n * @param {String} suffix\n * @returns {String}\n ",
+ "range": [
+ 973,
+ 1061
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 2
+ },
+ "end": {
+ "line": 56,
+ "column": 5
+ }
+ }
+ }
+ ],
+ "static": false
+ }
+ ],
+ "range": [
+ 206,
+ 1372
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 49
+ },
+ "end": {
+ "line": 67,
+ "column": 1
+ }
+ }
+ },
+ "range": [
+ 164,
+ 1372
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 7
+ },
+ "end": {
+ "line": 67,
+ "column": 1
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * @temp Asset class definition\n ",
+ "range": [
+ 117,
+ 156
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 0
+ },
+ "end": {
+ "line": 12,
+ "column": 3
+ }
+ }
+ }
+ ],
+ "trailingComments": []
+ },
+ "specifiers": [],
+ "source": null,
+ "range": [
+ 157,
+ 1372
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 0
+ },
+ "end": {
+ "line": 67,
+ "column": 1
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * @temp Asset class definition\n ",
+ "range": [
+ 117,
+ 156
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 0
+ },
+ "end": {
+ "line": 12,
+ "column": 3
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "sourceType": "module",
+ "range": [
+ 42,
+ 1372
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 67,
+ "column": 1
+ }
+ },
+ "comments": [
+ {
+ "type": "Block",
+ "value": "*\n * Created by mgoria on 5/28/15.\n ",
+ "range": [
+ 0,
+ 40
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * @temp Asset class definition\n ",
+ "range": [
+ 117,
+ 156
+ ],
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 0
+ },
+ "end": {
+ "line": 12,
+ "column": 3
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Booting a certain service\n *\n * @param {Kernel} kernel\n * @param {Function} callback\n ",
+ "range": [
+ 246,
+ 351
+ ],
+ "loc": {
+ "start": {
+ "line": 18,
+ "column": 2
+ },
+ "end": {
+ "line": 23,
+ "column": 5
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * @param {String} object\n * @param {String} suffix\n * @returns {String}\n ",
+ "range": [
+ 973,
+ 1061
+ ],
+ "loc": {
+ "start": {
+ "line": 52,
+ "column": 2
+ },
+ "end": {
+ "line": 56,
+ "column": 5
+ }
+ }
+ },
+ {
+ "type": "Line",
+ "value": " binds working microservice if specified in object parameter",
+ "range": [
+ 1098,
+ 1160
+ ],
+ "loc": {
+ "start": {
+ "line": 58,
+ "column": 4
+ },
+ "end": {
+ "line": 58,
+ "column": 66
+ }
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/docs-api/deep-asset/ast/source/Exception/Exception.js.json b/docs-api/deep-asset/ast/source/Exception/Exception.js.json
new file mode 100644
index 00000000..a5724794
--- /dev/null
+++ b/docs-api/deep-asset/ast/source/Exception/Exception.js.json
@@ -0,0 +1,651 @@
+{
+ "type": "Program",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "Literal",
+ "value": "use strict",
+ "raw": "'use strict'",
+ "range": [
+ 46,
+ 58
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 12
+ }
+ }
+ },
+ "range": [
+ 46,
+ 59
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 13
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Created by AlexanderC on 6/10/15.\n ",
+ "range": [
+ 0,
+ 44
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportDefaultSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Core",
+ "range": [
+ 68,
+ 72
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 11
+ }
+ }
+ },
+ "range": [
+ 68,
+ 72
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 11
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "deep-core",
+ "raw": "'deep-core'",
+ "range": [
+ 78,
+ 89
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 17
+ },
+ "end": {
+ "line": 7,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 61,
+ 90
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 29
+ }
+ },
+ "trailingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Thrown when any exception occurs\n ",
+ "range": [
+ 92,
+ 135
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 0
+ },
+ "end": {
+ "line": 11,
+ "column": 3
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ExportNamedDeclaration",
+ "declaration": {
+ "type": "ClassDeclaration",
+ "id": {
+ "type": "Identifier",
+ "name": "Exception",
+ "range": [
+ 149,
+ 158
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 13
+ },
+ "end": {
+ "line": 12,
+ "column": 22
+ }
+ }
+ },
+ "superClass": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "Core",
+ "range": [
+ 167,
+ 171
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 31
+ },
+ "end": {
+ "line": 12,
+ "column": 35
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Exception",
+ "range": [
+ 172,
+ 181
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 36
+ },
+ "end": {
+ "line": 12,
+ "column": 45
+ }
+ }
+ },
+ "range": [
+ 167,
+ 181
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 31
+ },
+ "end": {
+ "line": 12,
+ "column": 45
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "Exception",
+ "range": [
+ 182,
+ 191
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 46
+ },
+ "end": {
+ "line": 12,
+ "column": 55
+ }
+ }
+ },
+ "range": [
+ 167,
+ 191
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 31
+ },
+ "end": {
+ "line": 12,
+ "column": 55
+ }
+ }
+ },
+ "body": {
+ "type": "ClassBody",
+ "body": [
+ {
+ "type": "MethodDefinition",
+ "key": {
+ "type": "Identifier",
+ "name": "constructor",
+ "range": [
+ 233,
+ 244
+ ],
+ "loc": {
+ "start": {
+ "line": 16,
+ "column": 2
+ },
+ "end": {
+ "line": 16,
+ "column": 13
+ }
+ }
+ },
+ "value": {
+ "type": "FunctionExpression",
+ "id": null,
+ "params": [
+ {
+ "type": "RestElement",
+ "argument": {
+ "type": "Identifier",
+ "name": "args",
+ "range": [
+ 248,
+ 252
+ ],
+ "loc": {
+ "start": {
+ "line": 16,
+ "column": 17
+ },
+ "end": {
+ "line": 16,
+ "column": 21
+ }
+ }
+ },
+ "range": [
+ 245,
+ 252
+ ],
+ "loc": {
+ "start": {
+ "line": 16,
+ "column": 14
+ },
+ "end": {
+ "line": 16,
+ "column": 21
+ }
+ }
+ }
+ ],
+ "body": {
+ "type": "BlockStatement",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "CallExpression",
+ "callee": {
+ "type": "Super",
+ "range": [
+ 260,
+ 265
+ ],
+ "loc": {
+ "start": {
+ "line": 17,
+ "column": 4
+ },
+ "end": {
+ "line": 17,
+ "column": 9
+ }
+ }
+ },
+ "arguments": [
+ {
+ "type": "SpreadElement",
+ "argument": {
+ "type": "Identifier",
+ "name": "args",
+ "range": [
+ 269,
+ 273
+ ],
+ "loc": {
+ "start": {
+ "line": 17,
+ "column": 13
+ },
+ "end": {
+ "line": 17,
+ "column": 17
+ }
+ }
+ },
+ "range": [
+ 266,
+ 273
+ ],
+ "loc": {
+ "start": {
+ "line": 17,
+ "column": 10
+ },
+ "end": {
+ "line": 17,
+ "column": 17
+ }
+ }
+ }
+ ],
+ "range": [
+ 260,
+ 274
+ ],
+ "loc": {
+ "start": {
+ "line": 17,
+ "column": 4
+ },
+ "end": {
+ "line": 17,
+ "column": 18
+ }
+ }
+ },
+ "range": [
+ 260,
+ 275
+ ],
+ "loc": {
+ "start": {
+ "line": 17,
+ "column": 4
+ },
+ "end": {
+ "line": 17,
+ "column": 19
+ }
+ }
+ }
+ ],
+ "range": [
+ 254,
+ 279
+ ],
+ "loc": {
+ "start": {
+ "line": 16,
+ "column": 23
+ },
+ "end": {
+ "line": 18,
+ "column": 3
+ }
+ }
+ },
+ "generator": false,
+ "expression": false,
+ "range": [
+ 244,
+ 279
+ ],
+ "loc": {
+ "start": {
+ "line": 16,
+ "column": 13
+ },
+ "end": {
+ "line": 18,
+ "column": 3
+ }
+ }
+ },
+ "kind": "constructor",
+ "computed": false,
+ "range": [
+ 233,
+ 279
+ ],
+ "loc": {
+ "start": {
+ "line": 16,
+ "column": 2
+ },
+ "end": {
+ "line": 18,
+ "column": 3
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * @param {Array} args\n ",
+ "range": [
+ 196,
+ 230
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 2
+ },
+ "end": {
+ "line": 15,
+ "column": 5
+ }
+ }
+ }
+ ],
+ "static": false
+ }
+ ],
+ "range": [
+ 192,
+ 281
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 56
+ },
+ "end": {
+ "line": 19,
+ "column": 1
+ }
+ }
+ },
+ "range": [
+ 143,
+ 281
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 7
+ },
+ "end": {
+ "line": 19,
+ "column": 1
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Thrown when any exception occurs\n ",
+ "range": [
+ 92,
+ 135
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 0
+ },
+ "end": {
+ "line": 11,
+ "column": 3
+ }
+ }
+ }
+ ],
+ "trailingComments": []
+ },
+ "specifiers": [],
+ "source": null,
+ "range": [
+ 136,
+ 281
+ ],
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 0
+ },
+ "end": {
+ "line": 19,
+ "column": 1
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Thrown when any exception occurs\n ",
+ "range": [
+ 92,
+ 135
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 0
+ },
+ "end": {
+ "line": 11,
+ "column": 3
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "sourceType": "module",
+ "range": [
+ 46,
+ 281
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 19,
+ "column": 1
+ }
+ },
+ "comments": [
+ {
+ "type": "Block",
+ "value": "*\n * Created by AlexanderC on 6/10/15.\n ",
+ "range": [
+ 0,
+ 44
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * Thrown when any exception occurs\n ",
+ "range": [
+ 92,
+ 135
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 0
+ },
+ "end": {
+ "line": 11,
+ "column": 3
+ }
+ }
+ },
+ {
+ "type": "Block",
+ "value": "*\n * @param {Array} args\n ",
+ "range": [
+ 196,
+ 230
+ ],
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 2
+ },
+ "end": {
+ "line": 15,
+ "column": 5
+ }
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/docs-api/deep-asset/ast/source/bootstrap.js.json b/docs-api/deep-asset/ast/source/bootstrap.js.json
new file mode 100644
index 00000000..fab3da9b
--- /dev/null
+++ b/docs-api/deep-asset/ast/source/bootstrap.js.json
@@ -0,0 +1,332 @@
+{
+ "type": "Program",
+ "body": [
+ {
+ "type": "ExpressionStatement",
+ "expression": {
+ "type": "Literal",
+ "value": "use strict",
+ "raw": "'use strict'",
+ "range": [
+ 43,
+ 55
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 12
+ }
+ }
+ },
+ "range": [
+ 43,
+ 56
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 13
+ }
+ },
+ "leadingComments": [
+ {
+ "type": "Block",
+ "value": "*\n * Created by mgoria on 5/27/2015\n ",
+ "range": [
+ 0,
+ 41
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "ImportDeclaration",
+ "specifiers": [
+ {
+ "type": "ImportSpecifier",
+ "local": {
+ "type": "Identifier",
+ "name": "Asset",
+ "range": [
+ 66,
+ 71
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 8
+ },
+ "end": {
+ "line": 7,
+ "column": 13
+ }
+ }
+ },
+ "imported": {
+ "type": "Identifier",
+ "name": "Asset",
+ "range": [
+ 66,
+ 71
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 8
+ },
+ "end": {
+ "line": 7,
+ "column": 13
+ }
+ }
+ },
+ "range": [
+ 66,
+ 71
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 8
+ },
+ "end": {
+ "line": 7,
+ "column": 13
+ }
+ }
+ }
+ ],
+ "source": {
+ "type": "Literal",
+ "value": "./Asset",
+ "raw": "'./Asset'",
+ "range": [
+ 78,
+ 87
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 20
+ },
+ "end": {
+ "line": 7,
+ "column": 29
+ }
+ }
+ },
+ "range": [
+ 58,
+ 88
+ ],
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 30
+ }
+ }
+ },
+ {
+ "type": "VariableDeclaration",
+ "declarations": [
+ {
+ "type": "VariableDeclarator",
+ "id": {
+ "type": "Identifier",
+ "name": "exports",
+ "range": [
+ 94,
+ 101
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 4
+ },
+ "end": {
+ "line": 9,
+ "column": 11
+ }
+ }
+ },
+ "init": {
+ "type": "AssignmentExpression",
+ "operator": "=",
+ "left": {
+ "type": "MemberExpression",
+ "computed": false,
+ "object": {
+ "type": "Identifier",
+ "name": "module",
+ "range": [
+ 104,
+ 110
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 14
+ },
+ "end": {
+ "line": 9,
+ "column": 20
+ }
+ }
+ },
+ "property": {
+ "type": "Identifier",
+ "name": "exports",
+ "range": [
+ 111,
+ 118
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 21
+ },
+ "end": {
+ "line": 9,
+ "column": 28
+ }
+ }
+ },
+ "range": [
+ 104,
+ 118
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 14
+ },
+ "end": {
+ "line": 9,
+ "column": 28
+ }
+ }
+ },
+ "right": {
+ "type": "Identifier",
+ "name": "Asset",
+ "range": [
+ 121,
+ 126
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 31
+ },
+ "end": {
+ "line": 9,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 104,
+ 126
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 14
+ },
+ "end": {
+ "line": 9,
+ "column": 36
+ }
+ }
+ },
+ "range": [
+ 94,
+ 126
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 4
+ },
+ "end": {
+ "line": 9,
+ "column": 36
+ }
+ }
+ }
+ ],
+ "kind": "let",
+ "range": [
+ 90,
+ 127
+ ],
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 37
+ }
+ }
+ }
+ ],
+ "sourceType": "module",
+ "range": [
+ 43,
+ 127
+ ],
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 37
+ }
+ },
+ "comments": [
+ {
+ "type": "Block",
+ "value": "*\n * Created by mgoria on 5/27/2015\n ",
+ "range": [
+ 0,
+ 41
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 3
+ }
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/docs-api/deep-asset/badge.svg b/docs-api/deep-asset/badge.svg
new file mode 100644
index 00000000..d6092cc1
--- /dev/null
+++ b/docs-api/deep-asset/badge.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+ document
+ document
+ 83%
+ 83%
+
+
diff --git a/docs-api/deep-asset/class/lib/Asset.js~Asset.html b/docs-api/deep-asset/class/lib/Asset.js~Asset.html
new file mode 100644
index 00000000..62d5c57f
--- /dev/null
+++ b/docs-api/deep-asset/class/lib/Asset.js~Asset.html
@@ -0,0 +1,370 @@
+
+
+
+
+
+ Asset | DEEP Asset Library API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Asset
+
+
+
+
+
+
Extends: deep-kernel~Kernel.ContainerAware → Asset
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Constructor Summary
+ Public Constructor
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Method Summary
+ Public Methods
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Booting a certain service
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Public Constructors
+
+
+
+ public
+
+
+
+
+ constructor
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Public Methods
+
+
+
+ public
+
+
+
+
+ boot (kernel: Kernel , callback: Function )
+
+
+
+ source
+
+
+
+
+
+
+
Booting a certain service
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ kernel
+ Kernel
+
+
+
+
+ callback
+ Function
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+ locate (object: String , suffix: String ): String
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ object
+ String
+
+
+
+
+ suffix
+ String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs-api/deep-asset/class/lib/Exception/Exception.js~Exception.html b/docs-api/deep-asset/class/lib/Exception/Exception.js~Exception.html
new file mode 100644
index 00000000..ae83be4a
--- /dev/null
+++ b/docs-api/deep-asset/class/lib/Exception/Exception.js~Exception.html
@@ -0,0 +1,194 @@
+
+
+
+
+
+ Exception | DEEP Asset Library API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Exception
+
+
+
+
+
+
Extends: deep-core~Core.Exception.Exception → Exception
+
+
+
+
+
+
+
+
+
+
Thrown when any exception occurs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Constructor Summary
+ Public Constructor
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Public Constructors
+
+
+
+ public
+
+
+
+
+ constructor (args: Array )
+
+
+
+ source
+
+
+
+
+
+
+
+
+
+
+
+
Params:
+
+
+ Name Type Attribute Description
+
+
+
+
+ args
+ Array
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs-api/deep-asset/coverage.json b/docs-api/deep-asset/coverage.json
new file mode 100644
index 00000000..a07c72ae
--- /dev/null
+++ b/docs-api/deep-asset/coverage.json
@@ -0,0 +1,19 @@
+{
+ "coverage": "83.33%",
+ "expectCount": 6,
+ "actualCount": 5,
+ "files": {
+ "lib/Asset.js": {
+ "expectCount": 4,
+ "actualCount": 3,
+ "undocumentLines": [
+ 14
+ ]
+ },
+ "lib/Exception/Exception.js": {
+ "expectCount": 2,
+ "actualCount": 2,
+ "undocumentLines": []
+ }
+ }
+}
\ No newline at end of file
diff --git a/docs-api/deep-asset/css/prettify-tomorrow.css b/docs-api/deep-asset/css/prettify-tomorrow.css
new file mode 100644
index 00000000..b6f92a78
--- /dev/null
+++ b/docs-api/deep-asset/css/prettify-tomorrow.css
@@ -0,0 +1,132 @@
+/* Tomorrow Theme */
+/* Original theme - https://github.com/chriskempson/tomorrow-theme */
+/* Pretty printing styles. Used with prettify.js. */
+/* SPAN elements with the classes below are added by prettyprint. */
+/* plain text */
+.pln {
+ color: #4d4d4c; }
+
+@media screen {
+ /* string content */
+ .str {
+ color: #718c00; }
+
+ /* a keyword */
+ .kwd {
+ color: #8959a8; }
+
+ /* a comment */
+ .com {
+ color: #8e908c; }
+
+ /* a type name */
+ .typ {
+ color: #4271ae; }
+
+ /* a literal value */
+ .lit {
+ color: #f5871f; }
+
+ /* punctuation */
+ .pun {
+ color: #4d4d4c; }
+
+ /* lisp open bracket */
+ .opn {
+ color: #4d4d4c; }
+
+ /* lisp close bracket */
+ .clo {
+ color: #4d4d4c; }
+
+ /* a markup tag name */
+ .tag {
+ color: #c82829; }
+
+ /* a markup attribute name */
+ .atn {
+ color: #f5871f; }
+
+ /* a markup attribute value */
+ .atv {
+ color: #3e999f; }
+
+ /* a declaration */
+ .dec {
+ color: #f5871f; }
+
+ /* a variable name */
+ .var {
+ color: #c82829; }
+
+ /* a function name */
+ .fun {
+ color: #4271ae; } }
+/* Use higher contrast and text-weight for printable form. */
+@media print, projection {
+ .str {
+ color: #060; }
+
+ .kwd {
+ color: #006;
+ font-weight: bold; }
+
+ .com {
+ color: #600;
+ font-style: italic; }
+
+ .typ {
+ color: #404;
+ font-weight: bold; }
+
+ .lit {
+ color: #044; }
+
+ .pun, .opn, .clo {
+ color: #440; }
+
+ .tag {
+ color: #006;
+ font-weight: bold; }
+
+ .atn {
+ color: #404; }
+
+ .atv {
+ color: #060; } }
+/* Style */
+/*
+pre.prettyprint {
+ background: white;
+ font-family: Consolas, Monaco, 'Andale Mono', monospace;
+ font-size: 12px;
+ line-height: 1.5;
+ border: 1px solid #ccc;
+ padding: 10px; }
+*/
+
+/* Specify class=linenums on a pre to get line numbering */
+ol.linenums {
+ margin-top: 0;
+ margin-bottom: 0; }
+
+/* IE indents via margin-left */
+li.L0,
+li.L1,
+li.L2,
+li.L3,
+li.L4,
+li.L5,
+li.L6,
+li.L7,
+li.L8,
+li.L9 {
+ /* */ }
+
+/* Alternate shading for lines */
+li.L1,
+li.L3,
+li.L5,
+li.L7,
+li.L9 {
+ /* */ }
diff --git a/docs-api/deep-asset/css/style.css b/docs-api/deep-asset/css/style.css
new file mode 100644
index 00000000..4dc99a1b
--- /dev/null
+++ b/docs-api/deep-asset/css/style.css
@@ -0,0 +1,862 @@
+@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,700);
+
+* {
+ margin: 0;
+ padding: 0;
+ text-decoration: none;
+}
+
+html
+{
+ font-family: 'Roboto', sans-serif;
+ overflow: auto;
+ font-size: 14px;
+ /*color: #4d4e53;*/
+ color: rgba(0, 0, 0, .68);
+ background-color: #fff;
+}
+
+a {
+ /*color: #0095dd;*/
+ /*color:rgb(37, 138, 175);*/
+ color: #039BE5;
+}
+
+code a:hover {
+ text-decoration: underline;
+}
+
+ul, ol {
+ padding-left: 20px;
+}
+
+ul li {
+ list-style: disc;
+ margin: 4px 0;
+}
+
+ol li {
+ margin: 4px 0;
+}
+
+h1 {
+ margin-bottom: 10px;
+ font-size: 34px;
+ font-weight: 300;
+ border-bottom: solid 1px #ddd;
+}
+
+h2 {
+ margin-top: 24px;
+ margin-bottom: 10px;
+ font-size: 20px;
+ border-bottom: solid 1px #ddd;
+ font-weight: 300;
+}
+
+h3 {
+ position: relative;
+ font-size: 16px;
+ margin-bottom: 12px;
+ background-color: #E2E2E2;
+ padding: 4px;
+ font-weight: 300;
+}
+
+del {
+ text-decoration: line-through;
+}
+
+p {
+ margin-bottom: 15px;
+ line-height: 19px;
+}
+
+p > code {
+ background-color: #f5f5f5;
+ border-radius: 3px;
+}
+
+pre > code {
+ display: block;
+}
+
+pre.prettyprint, pre > code {
+ padding: 4px;
+ margin: 1em 0;
+ background-color: #f5f5f5;
+ border-radius: 3px;
+}
+
+pre.prettyprint > code {
+ margin: 0;
+}
+
+p > code,
+li > code {
+ padding: 0 4px;
+ border-radius: 3px;
+}
+
+.import-path pre.prettyprint,
+.import-path pre.prettyprint code {
+ margin: 0;
+ padding: 0;
+ border: none;
+ background: white;
+}
+
+.layout-container {
+ /*display: flex;*/
+ /*flex-direction: row;*/
+ /*justify-content: flex-start;*/
+ /*align-items: stretch;*/
+}
+
+.layout-container > header {
+ height: 40px;
+ line-height: 40px;
+ font-size: 16px;
+ padding: 0 10px;
+ margin: 0;
+ position: fixed;
+ width: 100%;
+ z-index: 1;
+ background-color: white;
+ top: 0;
+ border-bottom: solid 1px #E02130;
+}
+.layout-container > header > a{
+ margin: 0 5px;
+}
+
+.layout-container > header > a.repo-url-github {
+ font-size: 0;
+ display: inline-block;
+ width: 20px;
+ height: 38px;
+ background: url("../image/github.png") no-repeat center;
+ background-size: 20px;
+ vertical-align: top;
+}
+
+.navigation {
+ position: fixed;
+ top: 0;
+ left: 0;
+ box-sizing: border-box;
+ width: 250px;
+ height: 100%;
+ padding-top: 40px;
+ padding-left: 15px;
+ padding-bottom: 2em;
+ margin-top:1em;
+ overflow-x: scroll;
+ box-shadow: rgba(255, 255, 255, 1) -1px 0 0 inset;
+ border-right: 1px solid rgba(0, 0, 0, 0.1);
+}
+
+.navigation ul {
+ padding: 0;
+}
+
+.navigation li {
+ list-style: none;
+ margin: 4px 0;
+ white-space: nowrap;
+}
+
+.navigation .nav-dir-path {
+ margin-top: 0.7em;
+ margin-bottom: 0.25em;
+ font-size: 0.8em;
+ color: #aaa;
+}
+
+.kind-class,
+.kind-interface,
+.kind-function,
+.kind-typedef,
+.kind-variable,
+.kind-external {
+ margin-left: 0.75em;
+ width: 1.2em;
+ height: 1.2em;
+ display: inline-block;
+ text-align: center;
+ border-radius: 0.2em;
+ margin-right: 0.2em;
+ font-weight: bold;
+}
+
+.kind-class {
+ color: #009800;
+ background-color: #bfe5bf;
+}
+
+.kind-interface {
+ color: #fbca04;
+ background-color: #fef2c0;
+}
+
+.kind-function {
+ color: #6b0090;
+ background-color: #d6bdde;
+}
+
+.kind-variable {
+ color: #eb6420;
+ background-color: #fad8c7;
+}
+
+.kind-typedef {
+ color: #db001e;
+ background-color: #edbec3;
+}
+
+.kind-external {
+ color: #0738c3;
+ background-color: #bbcbea;
+}
+
+h1 .version,
+h1 .url a {
+ font-size: 14px;
+ color: #aaa;
+}
+
+.content {
+ margin-top: 40px;
+ margin-left: 250px;
+ padding: 10px 50px 10px 20px;
+}
+
+.header-notice {
+ font-size: 14px;
+ color: #aaa;
+ margin: 0;
+}
+
+.expression-extends .prettyprint {
+ margin-left: 10px;
+ background: white;
+}
+
+.extends-chain {
+ border-bottom: 1px solid#ddd;
+ padding-bottom: 10px;
+ margin-bottom: 10px;
+}
+
+.extends-chain span:nth-of-type(1) {
+ padding-left: 10px;
+}
+
+.extends-chain > div {
+ margin: 5px 0;
+}
+
+.description table {
+ font-size: 14px;
+ border-spacing: 0;
+ border: 0;
+ border-collapse: collapse;
+}
+
+.description thead {
+ background: #999;
+ color: white;
+}
+
+.description table td,
+.description table th {
+ border: solid 1px #ddd;
+ padding: 4px;
+ font-weight: normal;
+}
+
+.flat-list ul {
+ padding-left: 0;
+}
+
+.flat-list li {
+ display: inline;
+ list-style: none;
+}
+
+table.summary {
+ width: 100%;
+ margin: 10px 0;
+ border-spacing: 0;
+ border: 0;
+ border-collapse: collapse;
+}
+
+table.summary thead {
+ background: #999;
+ color: white;
+}
+
+table.summary td {
+ border: solid 1px #ddd;
+ padding: 4px 10px;
+}
+
+table.summary tbody td:nth-child(1) {
+ text-align: right;
+ white-space: nowrap;
+ min-width: 64px;
+ vertical-align: top;
+}
+
+table.summary tbody td:nth-child(2) {
+ width: 100%;
+ border-right: none;
+}
+
+table.summary tbody td:nth-child(3) {
+ white-space: nowrap;
+ border-left: none;
+ vertical-align: top;
+}
+
+table.summary td > div:nth-of-type(2) {
+ padding-top: 4px;
+ padding-left: 15px;
+}
+
+table.summary td p {
+ margin-bottom: 0;
+}
+
+.inherited-summary thead td {
+ padding-left: 2px;
+}
+
+.inherited-summary thead a {
+ color: white;
+}
+
+.inherited-summary .summary tbody {
+ display: none;
+}
+
+.inherited-summary .summary .toggle {
+ padding: 0 4px;
+ font-size: 12px;
+ cursor: pointer;
+}
+.inherited-summary .summary .toggle.closed:before {
+ content: "â–¶";
+}
+.inherited-summary .summary .toggle.opened:before {
+ content: "â–¼";
+}
+
+.member, .method {
+ margin-bottom: 24px;
+}
+
+table.params {
+ width: 100%;
+ margin: 10px 0;
+ border-spacing: 0;
+ border: 0;
+ border-collapse: collapse;
+}
+
+table.params thead {
+ background: #eee;
+ color: #aaa;
+}
+
+table.params td {
+ padding: 4px;
+ border: solid 1px #ddd;
+}
+
+table.params td p {
+ margin: 0;
+}
+
+.content .detail > * {
+ margin: 15px 0;
+}
+
+.content .detail > h3 {
+ color: black;
+}
+
+.content .detail > div {
+ margin-left: 10px;
+}
+
+.content .detail > .import-path {
+ margin-top: -8px;
+}
+
+.content .detail + .detail {
+ margin-top: 30px;
+}
+
+.content .detail .throw td:first-child {
+ padding-right: 10px;
+}
+
+.content .detail h4 + :not(pre) {
+ padding-left: 0;
+ margin-left: 10px;
+}
+
+.content .detail h4 + ul li {
+ list-style: none;
+}
+
+.return-param * {
+ display: inline;
+}
+
+.argument-params {
+ margin-bottom: 20px;
+}
+
+.return-type {
+ padding-right: 10px;
+ font-weight: normal;
+}
+
+.return-desc {
+ margin-left: 10px;
+ margin-top: 4px;
+}
+
+.return-desc p {
+ margin: 0;
+}
+
+.deprecated, .experimental, .instance-docs {
+ border-left: solid 5px orange;
+ padding-left: 4px;
+ margin: 4px 0;
+}
+
+tr.listen p,
+tr.throw p,
+tr.emit p{
+ margin-bottom: 10px;
+}
+
+.version, .since {
+ color: #aaa;
+}
+
+h3 .right-info {
+ position: absolute;
+ right: 4px;
+ font-size: 14px;
+}
+
+.version + .since:before {
+ content: '| ';
+}
+
+.see {
+ margin-top: 10px;
+}
+
+.see h4 {
+ margin: 4px 0;
+}
+
+.content .detail h4 + .example-doc {
+ margin: 6px 0;
+}
+
+.example-caption {
+ position: relative;
+ bottom: -1px;
+ display: inline-block;
+ padding: 4px;
+ font-style: italic;
+ background-color: #f5f5f5;
+ font-weight: bold;
+ border-radius: 3px;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+}
+
+.example-caption + pre.source-code {
+ margin-top: 0;
+ border-top-left-radius: 0;
+}
+
+footer, .file-footer {
+ text-align: right;
+ font-style: italic;
+ font-weight: 100;
+ font-size: 13px;
+ margin-right: 50px;
+ margin-left: 270px;
+ border-top: 1px solid #ddd;
+ padding-top: 30px;
+ margin-top: 20px;
+ padding-bottom: 10px;
+}
+
+pre.source-code {
+ background: #f5f5f5;
+ padding: 4px;
+}
+
+pre.raw-source-code > code {
+ padding: 0;
+ margin: 0;
+}
+
+pre.source-code.line-number {
+ padding: 0;
+}
+
+pre.source-code ol {
+ background: #eee;
+ padding-left: 40px;
+}
+
+pre.source-code li {
+ background: white;
+ padding-left: 4px;
+ list-style: decimal;
+ margin: 0;
+}
+
+pre.source-code.line-number li.active {
+ background: rgb(255, 255, 150);
+}
+
+pre.source-code.line-number li.error-line {
+ background: #ffb8bf;
+}
+
+table.files-summary {
+ width: 100%;
+ margin: 10px 0;
+ border-spacing: 0;
+ border: 0;
+ border-collapse: collapse;
+ text-align: right;
+}
+
+table.files-summary tbody tr:hover {
+ background: #eee;
+}
+
+table.files-summary td:first-child,
+table.files-summary td:nth-of-type(2) {
+ text-align: left;
+}
+
+table.files-summary[data-use-coverage="false"] td.coverage {
+ display: none;
+}
+
+table.files-summary thead {
+ background: #999;
+ color: white;
+}
+
+table.files-summary td {
+ border: solid 1px #ddd;
+ padding: 4px 10px;
+ vertical-align: top;
+}
+
+table.files-summary td.identifiers > span {
+ display: block;
+ margin-top: 4px;
+}
+table.files-summary td.identifiers > span:first-child {
+ margin-top: 0;
+}
+
+table.files-summary .coverage-count {
+ font-size: 12px;
+ color: #aaa;
+ display: inline-block;
+ min-width: 40px;
+}
+
+.total-coverage-count {
+ position: relative;
+ bottom: 2px;
+ font-size: 12px;
+ color: #666;
+ font-weight: 500;
+ padding-left: 5px;
+}
+
+table.test-summary thead {
+ background: #999;
+ color: white;
+}
+
+table.test-summary thead .test-description {
+ width: 50%;
+}
+
+table.test-summary {
+ width: 100%;
+ margin: 10px 0;
+ border-spacing: 0;
+ border: 0;
+ border-collapse: collapse;
+}
+
+table.test-summary thead .test-count {
+ width: 3em;
+}
+
+table.test-summary tbody tr:hover {
+ background-color: #eee;
+}
+
+table.test-summary td {
+ border: solid 1px #ddd;
+ padding: 4px 10px;
+ vertical-align: top;
+}
+
+table.test-summary td p {
+ margin: 0;
+}
+
+table.test-summary tr.test-describe .toggle {
+ display: inline-block;
+ float: left;
+ margin-right: 4px;
+ cursor: pointer;
+}
+
+table.test-summary tr.test-describe .toggle.opened:before {
+ content: 'â–¼';
+}
+
+table.test-summary tr.test-describe .toggle.closed:before {
+ content: 'â–¶';
+}
+
+table.test-summary .test-target > span {
+ display: block;
+ margin-top: 4px;
+}
+table.test-summary .test-target > span:first-child {
+ margin-top: 0;
+}
+
+.inner-link-active {
+ background: rgb(255, 255, 150);
+}
+
+/* search box */
+.search-box {
+ position: absolute;
+ top: 10px;
+ right: 50px;
+ padding-right: 8px;
+ padding-bottom: 10px;
+ line-height: normal;
+ font-size: 12px;
+}
+
+.search-box img {
+ width: 20px;
+ vertical-align: top;
+}
+
+.search-input {
+ display: inline;
+ visibility: hidden;
+ width: 0;
+ padding: 2px;
+ height: 1.5em;
+ outline: none;
+ background: transparent;
+ border: 1px #0af;
+ border-style: none none solid none;
+ vertical-align: bottom;
+}
+
+.search-input-edge {
+ display: none;
+ width: 1px;
+ height: 5px;
+ background-color: #0af;
+ vertical-align: bottom;
+}
+
+.search-result {
+ position: absolute;
+ display: none;
+ height: 600px;
+ width: 100%;
+ padding: 0;
+ margin-top: 5px;
+ margin-left: 24px;
+ background: white;
+ box-shadow: 1px 1px 4px rgb(0,0,0);
+ white-space: nowrap;
+ overflow-y: scroll;
+}
+
+.search-result-import-path {
+ color: #aaa;
+ font-size: 12px;
+}
+
+.search-result li {
+ list-style: none;
+ padding: 2px 4px;
+}
+
+.search-result li a {
+ display: block;
+}
+
+.search-result li.selected {
+ background: #ddd;
+}
+
+.search-result li.search-separator {
+ background: rgb(37, 138, 175);
+ color: white;
+}
+
+.search-box.active .search-input {
+ visibility: visible;
+ transition: width 0.2s ease-out;
+ width: 300px;
+}
+
+.search-box.active .search-input-edge {
+ display: inline-block;
+}
+
+/* coverage badge */
+.esdoc-coverage {
+ display: inline-block;
+ height: 20px;
+ vertical-align: top;
+}
+
+h1 .esdoc-coverage {
+ position: relative;
+ top: -4px;
+}
+
+.esdoc-coverage-wrap {
+ color: white;
+ font-size: 12px;
+ font-weight: 500;
+}
+
+.esdoc-coverage-label {
+ padding: 3px 4px 3px 6px;
+ background: linear-gradient(to bottom, #5e5e5e 0%,#4c4c4c 100%);
+ border-radius: 4px 0 0 4px;
+ display: inline-block;
+ height: 20px;
+ box-sizing: border-box;
+ line-height: 14px;
+}
+
+.esdoc-coverage-ratio {
+ padding: 3px 6px 3px 4px;
+ border-radius: 0 4px 4px 0;
+ display: inline-block;
+ height: 20px;
+ box-sizing: border-box;
+ line-height: 14px;
+}
+
+.esdoc-coverage-low {
+ background: linear-gradient(to bottom, #db654f 0%,#c9533d 100%);
+}
+
+.esdoc-coverage-middle {
+ background: linear-gradient(to bottom, #dab226 0%,#c9a179 100%);
+}
+
+.esdoc-coverage-high {
+ background: linear-gradient(to bottom, #4fc921 0%,#3eb810 100%);
+}
+
+/* github markdown */
+.github-markdown {
+ font-size: 16px;
+}
+
+.github-markdown h1,
+.github-markdown h2,
+.github-markdown h3,
+.github-markdown h4,
+.github-markdown h5 {
+ margin-top: 1em;
+ margin-bottom: 16px;
+ font-weight: bold;
+ padding: 0;
+}
+
+.github-markdown h1:nth-of-type(1) {
+ margin-top: 0;
+}
+
+.github-markdown h1 {
+ font-size: 2em;
+ padding-bottom: 0.3em;
+}
+
+.github-markdown h2 {
+ font-size: 1.75em;
+ padding-bottom: 0.3em;
+}
+
+.github-markdown h3 {
+ font-size: 1.5em;
+ background-color: transparent;
+}
+
+.github-markdown h4 {
+ font-size: 1.25em;
+}
+
+.github-markdown h5 {
+ font-size: 1em;
+}
+
+.github-markdown ul, .github-markdown ol {
+ padding-left: 2em;
+}
+
+.github-markdown pre > code {
+ font-size: 0.85em;
+}
+
+.github-markdown table {
+ margin-bottom: 1em;
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+.github-markdown table tr {
+ background-color: #fff;
+ border-top: 1px solid #ccc;
+}
+
+.github-markdown table th,
+.github-markdown table td {
+ padding: 6px 13px;
+ border: 1px solid #ddd;
+}
+
+.github-markdown table tr:nth-child(2n) {
+ background-color: #f8f8f8;
+}
diff --git a/docs-api/deep-asset/dump.json b/docs-api/deep-asset/dump.json
new file mode 100644
index 00000000..91b9559e
--- /dev/null
+++ b/docs-api/deep-asset/dump.json
@@ -0,0 +1,868 @@
+[
+ {
+ "kind": "file",
+ "static": true,
+ "variation": null,
+ "name": "lib/Asset.js",
+ "memberof": null,
+ "longname": "lib/Asset.js",
+ "access": null,
+ "description": null,
+ "lineNumber": 5,
+ "content": "/**\n * Created by mgoria on 5/28/15.\n */\n\n'use strict';\n\nimport Kernel from 'deep-kernel';\nimport Path from 'path';\n\n/**\n * @temp Asset class definition\n */\nexport class Asset extends Kernel.ContainerAware {\n constructor() {\n super();\n }\n\n /**\n * Booting a certain service\n *\n * @param {Kernel} kernel\n * @param {Function} callback\n */\n boot(kernel, callback) {\n if (kernel.isFrontend) {\n let loadVector = [];\n let microservices = kernel.microservices;\n\n for (let microserviceKey in microservices) {\n if (!microservices.hasOwnProperty(microserviceKey)) {\n continue;\n }\n\n let microservice = microservices[microserviceKey];\n\n if (microservice.isRoot) {\n continue;\n }\n\n loadVector.push(this.bind(microservice).locate('bootstrap.js'));\n }\n\n kernel.container.addParameter(\n Kernel.FRONTEND_BOOTSTRAP_VECTOR,\n loadVector\n );\n }\n\n callback();\n }\n\n /**\n * @param {String} object\n * @param {String} suffix\n * @returns {String}\n */\n locate(object, suffix = '') {\n // binds working microservice if specified in object parameter\n let path = this._resolvePath(object);\n\n if (this.microservice.isRoot) {\n return Path.join(path) + suffix;\n } else {\n return Path.join(this.microservice.toString(), path) + suffix;\n }\n }\n}\n"
+ },
+ {
+ "kind": "class",
+ "static": true,
+ "variation": null,
+ "name": "Asset",
+ "memberof": "lib/Asset.js",
+ "longname": "lib/Asset.js~Asset",
+ "access": null,
+ "export": true,
+ "importPath": "deep-asset/lib/Asset.js",
+ "importStyle": "{Asset}",
+ "description": null,
+ "lineNumber": 13,
+ "unknown": [
+ {
+ "tagName": "@temp",
+ "tagValue": "Asset class definition"
+ }
+ ],
+ "interface": false,
+ "extends": [
+ "deep-kernel~Kernel.ContainerAware"
+ ]
+ },
+ {
+ "kind": "constructor",
+ "static": false,
+ "variation": null,
+ "name": "constructor",
+ "memberof": "lib/Asset.js~Asset",
+ "longname": "lib/Asset.js~Asset#constructor",
+ "access": null,
+ "description": null,
+ "lineNumber": 14,
+ "undocument": true,
+ "params": [],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "boot",
+ "memberof": "lib/Asset.js~Asset",
+ "longname": "lib/Asset.js~Asset#boot",
+ "access": null,
+ "description": "Booting a certain service",
+ "lineNumber": 24,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "Kernel"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "kernel",
+ "description": ""
+ },
+ {
+ "nullable": null,
+ "types": [
+ "Function"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "callback",
+ "description": ""
+ }
+ ],
+ "generator": false
+ },
+ {
+ "kind": "method",
+ "static": false,
+ "variation": null,
+ "name": "locate",
+ "memberof": "lib/Asset.js~Asset",
+ "longname": "lib/Asset.js~Asset#locate",
+ "access": null,
+ "description": null,
+ "lineNumber": 57,
+ "unknown": [
+ {
+ "tagName": "@returns",
+ "tagValue": "{String}"
+ }
+ ],
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "String"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "object",
+ "description": ""
+ },
+ {
+ "nullable": null,
+ "types": [
+ "String"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "suffix",
+ "description": ""
+ }
+ ],
+ "return": {
+ "nullable": null,
+ "types": [
+ "String"
+ ],
+ "spread": false,
+ "description": ""
+ },
+ "generator": false
+ },
+ {
+ "kind": "file",
+ "static": true,
+ "variation": null,
+ "name": "lib/Exception/Exception.js",
+ "memberof": null,
+ "longname": "lib/Exception/Exception.js",
+ "access": null,
+ "description": null,
+ "lineNumber": 5,
+ "content": "/**\n * Created by AlexanderC on 6/10/15.\n */\n\n'use strict';\n\nimport Core from 'deep-core';\n\n/**\n * Thrown when any exception occurs\n */\nexport class Exception extends Core.Exception.Exception {\n /**\n * @param {Array} args\n */\n constructor(...args) {\n super(...args);\n }\n}\n"
+ },
+ {
+ "kind": "class",
+ "static": true,
+ "variation": null,
+ "name": "Exception",
+ "memberof": "lib/Exception/Exception.js",
+ "longname": "lib/Exception/Exception.js~Exception",
+ "access": null,
+ "export": true,
+ "importPath": "deep-asset/lib/Exception/Exception.js",
+ "importStyle": "{Exception}",
+ "description": "Thrown when any exception occurs",
+ "lineNumber": 12,
+ "interface": false,
+ "extends": [
+ "deep-core~Core.Exception.Exception"
+ ]
+ },
+ {
+ "kind": "constructor",
+ "static": false,
+ "variation": null,
+ "name": "constructor",
+ "memberof": "lib/Exception/Exception.js~Exception",
+ "longname": "lib/Exception/Exception.js~Exception#constructor",
+ "access": null,
+ "description": null,
+ "lineNumber": 16,
+ "params": [
+ {
+ "nullable": null,
+ "types": [
+ "Array"
+ ],
+ "spread": false,
+ "optional": false,
+ "name": "args",
+ "description": ""
+ }
+ ],
+ "generator": false
+ },
+ {
+ "kind": "file",
+ "static": true,
+ "variation": null,
+ "name": "lib/bootstrap.js",
+ "memberof": null,
+ "longname": "lib/bootstrap.js",
+ "access": null,
+ "description": null,
+ "lineNumber": 5,
+ "content": "/**\n * Created by mgoria on 5/27/2015\n */\n\n'use strict';\n\nimport {Asset} from './Asset';\n\nlet exports = module.exports = Asset;\n"
+ },
+ {
+ "kind": "variable",
+ "static": true,
+ "variation": null,
+ "name": "exports",
+ "memberof": "lib/bootstrap.js",
+ "longname": "lib/bootstrap.js~exports",
+ "access": null,
+ "export": false,
+ "importPath": "deep-asset/lib/bootstrap.js",
+ "importStyle": null,
+ "description": null,
+ "lineNumber": 9,
+ "undocument": true,
+ "type": {
+ "types": [
+ "*"
+ ]
+ }
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Infinity",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Infinity",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "NaN",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~NaN",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "undefined",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~undefined",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "null",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~null",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Object",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Object",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "object",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~object",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Function",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Function",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "function",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~function",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Boolean",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Boolean",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "boolean",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~boolean",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Symbol",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Symbol",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Error",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Error",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "EvalError",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~EvalError",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "InternalError",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~InternalError",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "RangeError",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~RangeError",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "ReferenceError",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~ReferenceError",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "SyntaxError",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~SyntaxError",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "TypeError",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~TypeError",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "URIError",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~URIError",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Number",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Number",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "number",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~number",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Date",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Date",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "String",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~String",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "string",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~string",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "RegExp",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~RegExp",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Int8Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Int8Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Uint8Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Uint8Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Uint8ClampedArray",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Int16Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Int16Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Uint16Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Uint16Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Int32Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Int32Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Uint32Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Uint32Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Float32Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Float32Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Float64Array",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Float64Array",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Map",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Map",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Set",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Set",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "WeakMap",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~WeakMap",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "WeakSet",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~WeakSet",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "ArrayBuffer",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "DataView",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~DataView",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "JSON",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~JSON",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Promise",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Promise",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Generator",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Generator",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "GeneratorFunction",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Reflect",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Reflect",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Proxy",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy",
+ "memberof": "BuiltinExternal/ECMAScriptExternal.js",
+ "longname": "BuiltinExternal/ECMAScriptExternal.js~Proxy",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "CanvasRenderingContext2D",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D",
+ "memberof": "BuiltinExternal/WebAPIExternal.js",
+ "longname": "BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "DocumentFragment",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment",
+ "memberof": "BuiltinExternal/WebAPIExternal.js",
+ "longname": "BuiltinExternal/WebAPIExternal.js~DocumentFragment",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Element",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Element",
+ "memberof": "BuiltinExternal/WebAPIExternal.js",
+ "longname": "BuiltinExternal/WebAPIExternal.js~Element",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Event",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Event",
+ "memberof": "BuiltinExternal/WebAPIExternal.js",
+ "longname": "BuiltinExternal/WebAPIExternal.js~Event",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "Node",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Node",
+ "memberof": "BuiltinExternal/WebAPIExternal.js",
+ "longname": "BuiltinExternal/WebAPIExternal.js~Node",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "NodeList",
+ "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList",
+ "memberof": "BuiltinExternal/WebAPIExternal.js",
+ "longname": "BuiltinExternal/WebAPIExternal.js~NodeList",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ },
+ {
+ "kind": "external",
+ "static": true,
+ "variation": null,
+ "name": "XMLHttpRequest",
+ "externalLink": "https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest",
+ "memberof": "BuiltinExternal/WebAPIExternal.js",
+ "longname": "BuiltinExternal/WebAPIExternal.js~XMLHttpRequest",
+ "access": null,
+ "description": null,
+ "builtinExternal": true
+ }
+]
\ No newline at end of file
diff --git a/docs-api/deep-asset/file/lib/Asset.js.html b/docs-api/deep-asset/file/lib/Asset.js.html
new file mode 100644
index 00000000..33656f2f
--- /dev/null
+++ b/docs-api/deep-asset/file/lib/Asset.js.html
@@ -0,0 +1,123 @@
+
+
+
+
+
+ lib/Asset.js | DEEP Asset Library API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+lib/Asset.js
+
/**
+ * Created by mgoria on 5/28/15.
+ */
+
+'use strict';
+
+import Kernel from 'deep-kernel';
+import Path from 'path';
+
+/**
+ * @temp Asset class definition
+ */
+export class Asset extends Kernel.ContainerAware {
+ constructor() {
+ super();
+ }
+
+ /**
+ * Booting a certain service
+ *
+ * @param {Kernel} kernel
+ * @param {Function} callback
+ */
+ boot(kernel, callback) {
+ if (kernel.isFrontend) {
+ let loadVector = [];
+ let microservices = kernel.microservices;
+
+ for (let microserviceKey in microservices) {
+ if (!microservices.hasOwnProperty(microserviceKey)) {
+ continue;
+ }
+
+ let microservice = microservices[microserviceKey];
+
+ if (microservice.isRoot) {
+ continue;
+ }
+
+ loadVector.push(this.bind(microservice).locate('bootstrap.js'));
+ }
+
+ kernel.container.addParameter(
+ Kernel.FRONTEND_BOOTSTRAP_VECTOR,
+ loadVector
+ );
+ }
+
+ callback();
+ }
+
+ /**
+ * @param {String} object
+ * @param {String} suffix
+ * @returns {String}
+ */
+ locate(object, suffix = '') {
+ // binds working microservice if specified in object parameter
+ let path = this._resolvePath(object);
+
+ if (this.microservice.isRoot) {
+ return Path.join(path) + suffix;
+ } else {
+ return Path.join(this.microservice.toString(), path) + suffix;
+ }
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs-api/deep-asset/file/lib/Exception/Exception.js.html b/docs-api/deep-asset/file/lib/Exception/Exception.js.html
new file mode 100644
index 00000000..de2965bd
--- /dev/null
+++ b/docs-api/deep-asset/file/lib/Exception/Exception.js.html
@@ -0,0 +1,75 @@
+
+
+
+
+
+ lib/Exception/Exception.js | DEEP Asset Library API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+lib/Exception/Exception.js
+
/**
+ * Created by AlexanderC on 6/10/15.
+ */
+
+'use strict';
+
+import Core from 'deep-core';
+
+/**
+ * Thrown when any exception occurs
+ */
+export class Exception extends Core.Exception.Exception {
+ /**
+ * @param {Array} args
+ */
+ constructor(...args) {
+ super(...args);
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs-api/deep-asset/file/lib/bootstrap.js.html b/docs-api/deep-asset/file/lib/bootstrap.js.html
new file mode 100644
index 00000000..abc7dfa6
--- /dev/null
+++ b/docs-api/deep-asset/file/lib/bootstrap.js.html
@@ -0,0 +1,65 @@
+
+
+
+
+
+ lib/bootstrap.js | DEEP Asset Library API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+lib/bootstrap.js
+
/**
+ * Created by mgoria on 5/27/2015
+ */
+
+'use strict';
+
+import {Asset} from './Asset';
+
+let exports = module.exports = Asset;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs-api/deep-asset/identifiers.html b/docs-api/deep-asset/identifiers.html
new file mode 100644
index 00000000..9f94a549
--- /dev/null
+++ b/docs-api/deep-asset/identifiers.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+ Index | DEEP Asset Library API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+Identifier
+
Class Summary
+ Static Public Class Summary
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public
+
+
+
+
+
+
+
+
+
+
+
Thrown when any exception occurs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs-api/deep-asset/image/badge.svg b/docs-api/deep-asset/image/badge.svg
new file mode 100644
index 00000000..324db4c5
--- /dev/null
+++ b/docs-api/deep-asset/image/badge.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+ document
+ document
+ @ratio@
+ @ratio@
+
+
diff --git a/docs-api/deep-asset/image/github.png b/docs-api/deep-asset/image/github.png
new file mode 100644
index 00000000..ea6ff545
Binary files /dev/null and b/docs-api/deep-asset/image/github.png differ
diff --git a/docs-api/deep-asset/image/search.png b/docs-api/deep-asset/image/search.png
new file mode 100644
index 00000000..f5d84b69
Binary files /dev/null and b/docs-api/deep-asset/image/search.png differ
diff --git a/docs-api/deep-asset/index.html b/docs-api/deep-asset/index.html
new file mode 100644
index 00000000..d1bd50af
--- /dev/null
+++ b/docs-api/deep-asset/index.html
@@ -0,0 +1,188 @@
+
+
+
+
+
+ DEEP Asset Library API Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+deep-asset
+
+
+
+
+
+
deep-asset is a node.js library, part of DEEP Framework .
+
+
Digital Enterprise End-to-end Platform (also known as DEEP) is low cost and low maintenance digital platform powered by abstracted services from AWS. We enable businesses and developers to achieve more by doing less.
+
DEEP for Businesses
+
User Guide Documentation (to be updated later)
+
DEEP is enabling small and medium businesses, as well as enterprises to:
+
+Rent applications on a monthly basis by needed functionality from DEEP Marketplace
+Choose applications by desired features and deploy them securely in their own accounts from cloud providers like AWS
+Pay only for subscribed applications and stop paying when unsubscribing and not using anymore
+Run secured, self-service applications with beautiful user interfaces and intuitively simple user experiences
+Empower none technical teams to solve business problems through technology, without waiting on technical teams' availability
+
+
+DEEP Marketplace (aka www.deep.mg ) is a web application built using DEEP and published on serverless environment from Amazon Web Services (aka aws.amazon.com ). We make it faster and easier for developers to build and publish their software, as well as for businesses to discover and test applications they are looking for. Our goal is to connect businesses with developers, and empower technical teams to build self-service software that none technical teams could use. The marketplace is like Apple's App Store for web applications that run natively on cloud providers like AWS.
+
+
DEEP for Developers
+
+
+
DEEP is enabling developers and architects to:
+
+Design microservices architecture on top of serverless environments from cloud providers like AWS
+Build distributed software that combines and manages hardware and software in the same microservice
+Use the framework's abstracted approach to build applications that could be cloud agnostic
+Build cloud native JavaScript applications that combine and manage frontend, backend and database layers in the same DEEP Microservice
+Run in the cloud the software that was built by distributed teams and served self-service in large organizations
+Monetize their work of art by uploading microservices to DEEP Marketplace
+
+
+DEEP Microservice is the predefined structure of a microservice (an application) in DEEP. There is clear separation between frontend, backend and database, as well as unit tests and documentation. Developers are encoraged to get started with DEEP Microservices HelloWorld or DEEP Microservices ToDo App , as well as DEEP CLI (aka deepify
).
+DEEP Marketplace (aka www.deep.mg ) is a web application built using DEEP and published on serverless environment from Amazon Web Services (aka aws.amazon.com ). We make it faster and easier for developers to build and publish their software, as well as for businesses to discover and test applications they are looking for. Our goal is to connect businesses with developers, and empower technical teams to build self-service software that none technical teams could use. The marketplace is like Apple's App Store for web applications that run natively on cloud providers like AWS.
+
+
DEEP Architecture on AWS
+
+
DEEP is using microservices architecture on serverless environments from cloud providers like AWS. DEEP Framework abstracts the functionality and makes it completely developer friendly. We have the following abstracted libraries:
+
+
+
+DEEP Abstracted Library
+Description
+AWS Abstracted Service(s)
+
+
+
+
+deep-asset
+Assets Management Library
+Amazon S3
+
+
+deep-cache
+Cache Management Library
+Amazon ElastiCache
+
+
+deep-core
+Core Management Library
+-
+
+
+deep-db
+Database Management Library
+Amazon DynamoDB, Amazon SQS
+
+
+deep-di
+Dependency Injection Management Library
+-
+
+
+deep-event
+Events Management Library
+Amazon Kinesis
+
+
+deep-fs
+File System Management Library
+Amazon S3
+
+
+deep-kernel
+Kernel Management Library
+-
+
+
+deep-log
+Logs Management Library
+Amazon CloudWatch Logs
+
+
+deep-notification
+Notifications Management Library
+Amazon SNS
+
+
+deep-resource
+Resouces Management Library
+AWS Lambda, Amazon API Gateway
+
+
+deep-security
+Security Management Library
+AWS IAM, Amazon Cognito
+
+
+deep-validation
+Validation Management Library
+-
+
+
+
+
Feedback
+
We are eager to get your feedback, so please use whatever communication channel you prefer:
+
+
License
+
This repository can be used under the MIT license.
+
+See LICENSE for more details.
+
+
+
This repository is being sponsored by:
+
+Mitoc Group
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs-api/deep-asset/package.json b/docs-api/deep-asset/package.json
new file mode 100644
index 00000000..e04469fe
--- /dev/null
+++ b/docs-api/deep-asset/package.json
@@ -0,0 +1,68 @@
+{
+ "name": "deep-asset",
+ "version": "0.0.46",
+ "description": "DEEP Asset Library",
+ "keywords": [
+ "Digital Enterprise End-To-End Platform",
+ "Amazon Web Services",
+ "Platform-as-a-Service",
+ "DEEP",
+ "AWS",
+ "PaaS",
+ "Cloud",
+ "Computing",
+ "Microservices",
+ "Architecture",
+ "Serverless",
+ "Abstracted",
+ "Core",
+ "Library",
+ "Asset"
+ ],
+ "homepage": "https://github.com/MitocGroup/deep",
+ "bugs": {
+ "url": "https://github.com/MitocGroup/deep/issues"
+ },
+ "license": "MIT",
+ "author": {
+ "name": "Mitoc Group",
+ "email": "hello@mitocgroup.com",
+ "url": "http://www.mitocgroup.com"
+ },
+ "contributors": [
+ {
+ "name": "AlexanderC",
+ "email": "alexanderc@mitocgroup.com"
+ },
+ {
+ "name": "Marcel Goria",
+ "email": "mgoria@mitocgroup.com"
+ },
+ {
+ "name": "Veaceslav Cotruta",
+ "email": "vcotruta@mitocgroup.com"
+ }
+ ],
+ "main": "lib.compiled/bootstrap.js",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/MitocGroup/deep.git"
+ },
+ "scripts": {
+ "coverage": "babel-node `which istanbul` cover --report lcov _mocha -- --ui tdd --recursive --reporter spec",
+ "test": "mocha --ui tdd --compilers js:mocha-babel --recursive --reporter spec",
+ "compile": "if [ -d 'lib/' ]; then BABEL_ENV=production babel lib/ --out-dir lib.compiled/; fi",
+ "prepublish": "npm run compile"
+ },
+ "dependencies": {
+ "deep-kernel": "*",
+ "deep-core": "*"
+ },
+ "devDependencies": {
+ "chai": "3.2.*",
+ "sinon": "1.17.0",
+ "sinon-chai": "2.8.0"
+ },
+ "preferGlobal": false,
+ "analyze": true
+}
diff --git a/docs-api/deep-asset/script/inherited-summary.js b/docs-api/deep-asset/script/inherited-summary.js
new file mode 100644
index 00000000..0a35b6df
--- /dev/null
+++ b/docs-api/deep-asset/script/inherited-summary.js
@@ -0,0 +1,28 @@
+(function(){
+ function toggle(ev) {
+ var button = ev.target;
+ var parent = ev.target.parentElement;
+ while(parent) {
+ if (parent.tagName === 'TABLE' && parent.classList.contains('summary')) break;
+ parent = parent.parentElement;
+ }
+
+ if (!parent) return;
+
+ var tbody = parent.querySelector('tbody');
+ if (button.classList.contains('opened')) {
+ button.classList.remove('opened');
+ button.classList.add('closed');
+ tbody.style.display = 'none';
+ } else {
+ button.classList.remove('closed');
+ button.classList.add('opened');
+ tbody.style.display = 'block';
+ }
+ }
+
+ var buttons = document.querySelectorAll('.inherited-summary thead .toggle');
+ for (var i = 0; i < buttons.length; i++) {
+ buttons[i].addEventListener('click', toggle);
+ }
+})();
diff --git a/docs-api/deep-asset/script/inner-link.js b/docs-api/deep-asset/script/inner-link.js
new file mode 100644
index 00000000..99d76273
--- /dev/null
+++ b/docs-api/deep-asset/script/inner-link.js
@@ -0,0 +1,29 @@
+// inner link(#foo) can not correctly scroll, because page has fixed header,
+// so, I manually scroll.
+(function(){
+ var matched = location.hash.match(/errorLines=([\d,]+)/);
+ if (matched) return;
+
+ function adjust() {
+ window.scrollBy(0, -55);
+ var el = document.querySelector('.inner-link-active');
+ if (el) el.classList.remove('inner-link-active');
+
+ var el = document.querySelector(location.hash);
+ if (el) el.classList.add('inner-link-active');
+ }
+
+ window.addEventListener('hashchange', adjust);
+
+ if (location.hash) {
+ setTimeout(adjust, 0);
+ }
+})();
+
+(function(){
+ var els = document.querySelectorAll('[href^="#"]');
+ for (var i = 0; i < els.length; i++) {
+ var el = els[i];
+ el.href = location.href + el.getAttribute('href'); // because el.href is absolute path
+ }
+})();
diff --git a/docs-api/deep-asset/script/patch-for-local.js b/docs-api/deep-asset/script/patch-for-local.js
new file mode 100644
index 00000000..5756d135
--- /dev/null
+++ b/docs-api/deep-asset/script/patch-for-local.js
@@ -0,0 +1,8 @@
+(function(){
+ if (location.protocol === 'file:') {
+ var elms = document.querySelectorAll('a[href="./"]');
+ for (var i = 0; i < elms.length; i++) {
+ elms[i].href = './index.html';
+ }
+ }
+})();
diff --git a/docs-api/deep-asset/script/prettify/Apache-License-2.0.txt b/docs-api/deep-asset/script/prettify/Apache-License-2.0.txt
new file mode 100644
index 00000000..d6456956
--- /dev/null
+++ b/docs-api/deep-asset/script/prettify/Apache-License-2.0.txt
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/docs-api/deep-asset/script/prettify/prettify.js b/docs-api/deep-asset/script/prettify/prettify.js
new file mode 100644
index 00000000..eef5ad7e
--- /dev/null
+++ b/docs-api/deep-asset/script/prettify/prettify.js
@@ -0,0 +1,28 @@
+var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
+(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
+[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
+l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
+q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
+q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
+"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
+a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
+for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
+"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
+H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
+J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
+I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]+/],["dec",/^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^
+
+
+
+
+
+
+
+
+
+
+Source 5/6
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+