Set up documentation generation

This commit is contained in:
dcodeIO
2018-03-19 01:12:18 +01:00
parent c0973433d6
commit 0fef69e445
47 changed files with 523 additions and 119 deletions

View File

@ -1,6 +1,7 @@
/**
* @file Abstract syntax tree representing a source file once parsed.
*/
* Abstract syntax tree representing a source file once parsed.
* @module ast
*//***/
import {
CommonFlags,
@ -16,9 +17,9 @@ import {
} from "./tokenizer";
import {
normalize as normalizePath,
resolve as resolvePath
} from "./util/path";
normalizePath,
resolvePath
} from "./util";
export { Token, Range };