diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-03 06:06:10 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-09 07:41:48 +0800 |
commit | 96677cd1788ab7eb8c493f4de7030200b0c39108 (patch) | |
tree | 57cf81c076f9900fd9e586c7d9c82e8f00e94e1f /docs | |
parent | 9fa54db7bd0003da3ef4f7daa6df860e71f7af75 (diff) | |
download | dexon-solidity-96677cd1788ab7eb8c493f4de7030200b0c39108.tar dexon-solidity-96677cd1788ab7eb8c493f4de7030200b0c39108.tar.gz dexon-solidity-96677cd1788ab7eb8c493f4de7030200b0c39108.tar.bz2 dexon-solidity-96677cd1788ab7eb8c493f4de7030200b0c39108.tar.lz dexon-solidity-96677cd1788ab7eb8c493f4de7030200b0c39108.tar.xz dexon-solidity-96677cd1788ab7eb8c493f4de7030200b0c39108.tar.zst dexon-solidity-96677cd1788ab7eb8c493f4de7030200b0c39108.zip |
Update the AST output
Diffstat (limited to 'docs')
-rw-r--r-- | docs/using-the-compiler.rst | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index 6a50ca68..f2d6b858 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -193,6 +193,15 @@ Output Description message: "Invalid keyword" } ], + // This contains the file-level outputs. In can be limited/filtered by the outputSelection settings. + sources: { + "sourceFile.sol": { + // Identifier (used in source maps) + id: 1, + // The AST object + ast: {} + } + }, // This contains the contract-level outputs. It can be limited/filtered by the outputSelection settings. contracts: { "sourceFile.sol": { @@ -264,13 +273,6 @@ Output Description } } }, - formal: { - "why3": "..." - }, - sourceList: ["source1.sol", "source2.sol"], // this is important for source references both in the ast as well as in the srcmap in the contract - sources: { - "source1.sol": { - "AST": { ... } - } - } + // Why3 output (string) + why3: "" } |