Lines Matching refs:StatementBlock
192 class StatementBlock : public Declaration {
194 StatementBlock() = default;
195 virtual ~StatementBlock() = default;
207 DISALLOW_COPY_AND_ASSIGN(StatementBlock);
223 StatementBlock body_;
240 StatementBlock* GetStatementBlock();
248 StatementBlock statements_;
264 StatementBlock* AddCase(const std::string& value_expression);
270 std::vector<std::unique_ptr<StatementBlock>> case_logic_;
309 StatementBlock* OnTrue() { return &on_true_; } in OnTrue()
310 StatementBlock* OnFalse() { return &on_false_; } in OnFalse()
316 StatementBlock on_true_;
317 StatementBlock on_false_;