Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- TokenKinds.cpp - Token Kinds Support -----------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the TokenKind enum and support functions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/Basic/TokenKinds.h" |
| 15 | #include <cassert> |
| 16 | using namespace clang; |
| 17 | |
| 18 | static const char * const TokNames[] = { |
| 19 | #define TOK(X) #X, |
| 20 | #define KEYWORD(X,Y) #X, |
| 21 | #include "clang/Basic/TokenKinds.def" |
| 22 | 0 |
| 23 | }; |
| 24 | |
| 25 | const char *tok::getTokenName(enum TokenKind Kind) { |
| 26 | assert(Kind < tok::NUM_TOKENS); |
| 27 | return TokNames[Kind]; |
| 28 | } |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 29 | |
Douglas Gregor | b2fb6de | 2009-02-27 17:53:17 +0000 | [diff] [blame] | 30 | const char *tok::getTokenSimpleSpelling(enum TokenKind Kind) { |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 31 | switch (Kind) { |
Kovarththanan Rajaratnam | 59c55e7 | 2009-11-28 16:09:28 +0000 | [diff] [blame] | 32 | #define PUNCTUATOR(X,Y) case X: return Y; |
| 33 | #include "clang/Basic/TokenKinds.def" |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 34 | default: break; |
| 35 | } |
| 36 | |
| 37 | return 0; |
| 38 | } |