Lines Matching refs:StatementBlock
206 class StatementBlock : public Declaration {
208 StatementBlock() = default;
209 virtual ~StatementBlock() = default;
221 DISALLOW_COPY_AND_ASSIGN(StatementBlock);
237 StatementBlock body_;
254 StatementBlock* GetStatementBlock();
262 StatementBlock statements_;
278 StatementBlock* AddCase(const std::string& value_expression);
284 std::vector<std::unique_ptr<StatementBlock>> case_logic_;
323 StatementBlock* OnTrue() { return &on_true_; } in OnTrue()
324 StatementBlock* OnFalse() { return &on_false_; } in OnFalse()
330 StatementBlock on_true_;
331 StatementBlock on_false_;