/* * Copyright 2016 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SKSL_STATEMENT #define SKSL_STATEMENT #include "src/sksl/ir/SkSLIRNode.h" #include "src/sksl/ir/SkSLSymbol.h" namespace SkSL { /** * Abstract supertype of all statements. */ class Statement : public IRNode { … }; } // namespace SkSL #endif