diff options
author | Christian <c@ethdev.com> | 2014-10-28 23:57:20 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-10-28 23:57:20 +0800 |
commit | 7bb3311be6ba971d05482114df323f1d015e96a9 (patch) | |
tree | ba38f4082dad2b1e99bf95146fe2c74361917a01 /ASTVisitor.h | |
parent | 933fbd7d60006092cd8846cc164188f7ad41460f (diff) | |
download | dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.gz dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.bz2 dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.lz dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.xz dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.zst dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.zip |
Forgot some asterisks.
Diffstat (limited to 'ASTVisitor.h')
-rw-r--r-- | ASTVisitor.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/ASTVisitor.h b/ASTVisitor.h index a667ad39..e4818ee2 100644 --- a/ASTVisitor.h +++ b/ASTVisitor.h @@ -30,12 +30,14 @@ namespace dev namespace solidity { -/// Visitor interface for the abstract syntax tree. This class is tightly bound to the -/// implementation of @ref ASTNode::accept and its overrides. After a call to -/// @ref ASTNode::accept, the function visit for the appropriate parameter is called and then -/// (if it returns true) this continues recursively for all child nodes in document order -/// (there is an exception for contracts). After all child nodes have been visited, endVisit is -/// called for the node. +/** + * Visitor interface for the abstract syntax tree. This class is tightly bound to the + * implementation of @ref ASTNode::accept and its overrides. After a call to + * @ref ASTNode::accept, the function visit for the appropriate parameter is called and then + * (if it returns true) this continues recursively for all child nodes in document order + * (there is an exception for contracts). After all child nodes have been visited, endVisit is + * called for the node. + */ class ASTVisitor { public: |