diff options
author | chriseth <chris@ethereum.org> | 2018-09-12 22:24:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 22:24:13 +0800 |
commit | 7cda8456d86a0f17e09efd067e6e941f0266f18f (patch) | |
tree | dfa1495d4a2b80040e17d7a437847f9dda2c66b8 /docs/bugs.rst | |
parent | e913b753b9a4bda78f8c47df6b48429391a0fd69 (diff) | |
parent | 75e38be05035ecbcb7c77bde53dbc6cbc22e88d4 (diff) | |
download | dexon-solidity-7cda8456d86a0f17e09efd067e6e941f0266f18f.tar dexon-solidity-7cda8456d86a0f17e09efd067e6e941f0266f18f.tar.gz dexon-solidity-7cda8456d86a0f17e09efd067e6e941f0266f18f.tar.bz2 dexon-solidity-7cda8456d86a0f17e09efd067e6e941f0266f18f.tar.lz dexon-solidity-7cda8456d86a0f17e09efd067e6e941f0266f18f.tar.xz dexon-solidity-7cda8456d86a0f17e09efd067e6e941f0266f18f.tar.zst dexon-solidity-7cda8456d86a0f17e09efd067e6e941f0266f18f.zip |
Merge pull request #4939 from ethereum/nested_array_library_changelogv0425
[backport] Buglist entry for returning nested arrays.
Diffstat (limited to 'docs/bugs.rst')
-rw-r--r-- | docs/bugs.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/bugs.rst b/docs/bugs.rst index f7522183..8e3382c8 100644 --- a/docs/bugs.rst +++ b/docs/bugs.rst @@ -57,14 +57,15 @@ conditions means that the optimizer has to be switched on to enable the bug. If no conditions are given, assume that the bug is present. check - This field contains different checks that report whether the smart contract + This field contains different checks that can be used to determine + whether a smart contract contains the bug or not. The first type of check are Javascript regular - expressions that are to be matched against the source code ("source-regex") - if the bug is present. If there is no match, then the bug is very likely + expressions that are to be matched against the source code ("source-regex"). + If there is no match, then the bug is very likely not present. If there is a match, the bug might be present. For improved accuracy, the checks should be applied to the source code after stripping comments. - The second type of check are patterns to be checked on the compact AST of + The second type of check are patterns to be applied to the compact AST of the Solidity program ("ast-compact-json-path"). The specified search query is a `JsonPath <https://github.com/json-path/JsonPath>`_ expression. If at least one path of the Solidity AST matches the query, the bug is |