diff options
author | chriseth <chris@ethereum.org> | 2018-08-15 18:30:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-15 18:30:54 +0800 |
commit | c7d2af2637e061de43cc6c53e12bf35d1ac66387 (patch) | |
tree | cd486c80ba40b74e8ea5a688101b879d15ddca69 /docs/bugs.rst | |
parent | b9752b236b474e384a297fe832cf0efb161e8deb (diff) | |
parent | 55e67e41f9356e4953a57d8a15808e1c7d391686 (diff) | |
download | dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.tar.gz dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.tar.zst dexon-solidity-c7d2af2637e061de43cc6c53e12bf35d1ac66387.zip |
Merge pull request #4583 from ethereum/nested_array_library_changelog
Bugfix Changelog entry regarding nested arrays returned by library functions
Diffstat (limited to 'docs/bugs.rst')
-rw-r--r-- | docs/bugs.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/bugs.rst b/docs/bugs.rst index 7629830d..6f315a65 100644 --- a/docs/bugs.rst +++ b/docs/bugs.rst @@ -56,6 +56,14 @@ conditions is an object that can contain a boolean value ``optimizer``, which 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 JavaScript regular expressions that are to be matched + against the source code ("source-regex") to find out if the + smart contract contains the bug or not. 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 regular + expression should be applied to the source code after stripping + comments. .. literalinclude:: bugs.json :language: js |