Daily bump.
[official-gcc.git] / gcc / rust / util / rust-token-converter.h
blob0498041b46c6f156a4f4630d7ca7fcc61020aa79
1 // This file is part of GCC.
3 // GCC is free software; you can redistribute it and/or modify it under
4 // the terms of the GNU General Public License as published by the Free
5 // Software Foundation; either version 3, or (at your option) any later
6 // version.
8 // GCC is distributed in the hope that it will be useful, but WITHOUT ANY
9 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 // for more details.
13 // You should have received a copy of the GNU General Public License
14 // along with GCC; see the file COPYING3. If not see
15 // <http://www.gnu.org/licenses/>.
17 #ifndef RUST_TOKEN_CONVERTER_H
18 #define RUST_TOKEN_CONVERTER_H
20 #include <vector>
21 #include "rust-token.h"
22 #include "libproc_macro_internal/proc_macro.h"
24 namespace Rust {
26 ProcMacro::TokenStream
27 convert (const std::vector<const_TokenPtr> &tokens);
29 std::vector<const_TokenPtr>
30 convert (const ProcMacro::TokenStream &ts);
32 ProcMacro::Literal
33 convert_literal (const_TokenPtr lit);
35 } // namespace Rust
37 #endif /* ! RUST_TOKEN_CONVERTER_H */