#include "src/sksl/ir/SkSLConstructorScalarCast.h"
#include "include/core/SkTypes.h"
#include "include/private/base/SkTArray.h"
#include "src/sksl/SkSLConstantFolder.h"
#include "src/sksl/SkSLContext.h"
#include "src/sksl/SkSLDefines.h"
#include "src/sksl/SkSLErrorReporter.h"
#include "src/sksl/ir/SkSLLiteral.h"
#include "src/sksl/ir/SkSLType.h"
#include <string>
namespace SkSL {
std::unique_ptr<Expression> ConstructorScalarCast::Convert(const Context& context,
Position pos,
const Type& rawType,
ExpressionArray args) { … }
std::unique_ptr<Expression> ConstructorScalarCast::Make(const Context& context,
Position pos,
const Type& type,
std::unique_ptr<Expression> arg) { … }
}