MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / ReportWarningAt

Method ReportWarningAt

validator/validator.cc:63–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63void ValidationContext::ReportWarningAt(int64_t id, absl::string_view message) {
64 issues_.push_back(TypeCheckIssue(TypeCheckIssue::Severity::kWarning,
65 ast_.ComputeSourceLocation(id),
66 std::string(message)));
67}
68
69void ValidationContext::ReportErrorAt(int64_t id, absl::string_view message) {
70 issues_.push_back(TypeCheckIssue(TypeCheckIssue::Severity::kError,

Callers 1

TESTFunction · 0.80

Calls 2

TypeCheckIssueClass · 0.85
ComputeSourceLocationMethod · 0.80

Tested by 1

TESTFunction · 0.64