blob: 2e7488d9a05f7785b7cac61520a62b2b99c86e7f [file] [log] [blame]
/*
* Copyright 2021 Google Inc.
*
* 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 "src/sksl/SkSLContext.h"
#include "src/sksl/ir/SkSLExpression.h"
namespace SkSL {
bool Expression::isIncomplete(const Context& context) const {
switch (this->kind()) {
case Kind::kFunctionReference:
case Kind::kExternalFunctionReference:
context.fErrors->error(fLine, "expected '(' to begin function call");
return true;
case Kind::kMethodReference:
context.fErrors->error(fLine, "expected '(' to begin method call");
return true;
case Kind::kTypeReference:
context.fErrors->error(fLine, "expected '(' to begin constructor invocation");
return true;
default:
return false;
}
}
} // namespace SkSL