Skip to content

Commit

Permalink
Expose the full API for now, see #356
Browse files Browse the repository at this point in the history
Some things might be more useful than others, but we can decide on that later.
  • Loading branch information
dcodeIO committed Dec 2, 2018
1 parent d5a6bbc commit 6ed45be
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/asc.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/asc.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/assemblyscript.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/assemblyscript.js.map

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions src/index.ts
Expand Up @@ -169,3 +169,20 @@ export function buildTSD(program: Program): string {

/** Prefix indicating a library file. */
export { LIBRARY_PREFIX } from "./common";

// Full API
export * from "./ast";
// export * from "./binary";
export * from "./common";
export * from "./compiler";
export * from "./decompiler";
export * from "./definitions";
export * from "./diagnosticMessages.generated";
export * from "./diagnostics";
export * from "./module";
export * from "./parser";
export * from "./program";
export * from "./resolver";
export * from "./tokenizer";
export * from "./types";
export * from "./util";

0 comments on commit 6ed45be

Please sign in to comment.