blob: 25d750b444864ee2c5fc2cfae0828382c1158b94 [file] [log] [blame]
/*
* Copyright 2021 Google LLC.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/sksl/SkSLErrorReporter.h"
#include "include/private/SkStringView.h"
#include "include/sksl/SkSLPosition.h"
#include "src/sksl/SkSLCompiler.h"
namespace SkSL {
void ErrorReporter::error(Position position, std::string_view msg) {
if (skstd::contains(msg, Compiler::POISON_TAG)) {
// Don't report errors on poison values.
return;
}
++fErrorCount;
this->handleError(msg, position);
}
void TestingOnly_AbortErrorReporter::handleError(std::string_view msg, Position pos) {
SK_ABORT("%.*s", (int)msg.length(), msg.data());
}
} // namespace SkSL