//===- Lexer.h - MLIR Lexer Interface ---------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file declares the MLIR Lexer class. // //===----------------------------------------------------------------------===// #ifndef MLIR_LIB_ASMPARSER_LEXER_H #define MLIR_LIB_ASMPARSER_LEXER_H #include "Token.h" #include "mlir/AsmParser/AsmParser.h" namespace mlir { class Location; /// This class breaks up the current file into a token stream. class Lexer { … }; } // namespace mlir #endif // MLIR_LIB_ASMPARSER_LEXER_H