#include "src/sksl/ir/SkSLBlock.h"
#include "src/sksl/ir/SkSLNop.h"
namespace SkSL {
std::unique_ptr<Statement> Block::Make(Position pos,
StatementArray statements,
Kind kind,
std::unique_ptr<SymbolTable> symbols) { … }
std::unique_ptr<Block> Block::MakeBlock(Position pos,
StatementArray statements,
Kind kind,
std::unique_ptr<SymbolTable> symbols) { … }
std::unique_ptr<Statement> Block::MakeCompoundStatement(std::unique_ptr<Statement> existing,
std::unique_ptr<Statement> additional) { … }
std::string Block::description() const { … }
}