blob: bbcaf69057db2992b3902fd6b1c8ccd605ca852f [file] [log] [blame]
// Copyright 2020 The Tint Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef SRC_VALIDATOR_VALIDATOR_H_
#define SRC_VALIDATOR_VALIDATOR_H_
#include <string>
#include "src/diagnostic/diagnostic.h"
namespace tint {
class Program;
// TODO(amaiorano): This class is deprecated. Delete after removing its usage in
// Dawn.
/// Determines if the program is complete and valid
class Validator {
public:
/// Runs the validator
/// @param program the program to validate
/// @returns true if the validation was successful
bool Validate(const Program* program) {
(void)program;
return true;
}
/// @returns error messages from the validator
std::string error() { return {}; }
/// @returns true if an error was encountered
bool has_error() const { return false; }
/// @returns the full list of diagnostic messages.
const diag::List& diagnostics() const { return diags_; }
private:
diag::List diags_;
};
} // namespace tint
#endif // SRC_VALIDATOR_VALIDATOR_H_