Move comment above associated declaration so some GUIs can pick it up.

R=mstarzinger@chromium.org
BUG=

Review URL: https://codereview.chromium.org/1857703002

Cr-Commit-Position: refs/heads/master@{#35228}
This commit is contained in:
neis 2016-04-04 01:51:33 -07:00 committed by Commit bot
parent c7ff5766cf
commit f5b8511b05

View File

@ -1182,7 +1182,6 @@ class TryCatchStatement final : public TryStatement {
Variable* variable() { return variable_; }
Block* catch_block() const { return catch_block_; }
void set_catch_block(Block* b) { catch_block_ = b; }
bool clear_pending_message() { return clear_pending_message_; }
// The clear_pending_message flag indicates whether or not to clear the
// isolate's pending exception message before executing the catch_block. In
@ -1194,6 +1193,7 @@ class TryCatchStatement final : public TryStatement {
// message instead of generating a new one.
// (When the catch block doesn't rethrow but is guaranteed to perform an
// ordinary throw, not clearing the old message is safe but not very useful.)
bool clear_pending_message() { return clear_pending_message_; }
protected:
TryCatchStatement(Zone* zone, Block* try_block, Scope* scope,