/usr/include/Synopsis/Token.hh is in libsynopsis0.12-dev 0.12-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | //
// Copyright (C) 2004 Stefan Seefeld
// All rights reserved.
// Licensed to the public under the terms of the GNU LGPL (>= 2),
// see the file COPYING for details.
//
#ifndef Synopsis_Token_hh_
#define Synopsis_Token_hh_
#include <cstring>
namespace Synopsis
{
//. A Token is what the Lexer splits an input stream into.
//. It refers to a region in the underlaying buffer and it
//. has a type.
//.
//. - line directive: `^"#"{blank}*{digit}+({blank}+.*)?\n`
//. - pragma directive: `^"#"{blank}*"pragma".*\n`
//. - Constant:
//.
//. - `{digit}+{int_suffix}*`
//. - `"0"{xletter}{hexdigit}+{int_suffix}*`
//. - `{digit}*\.{digit}+{float_suffix}*`
//. - `{digit}+\.{float_suffix}*`
//. - `{digit}*\.{digit}+"e"("+"|"-")*{digit}+{float_suffix}*`
//. - `{digit}+\."e"("+"|"-")*{digit}+{float_suffix}*`
//. - `{digit}+"e"("+"|"-")*{digit}+{float_suffix}*`
//.
//. - CharConst: `\'([^'\n]|\\[^\n])\'`
//. - WideCharConst: `L\'([^'\n]|\\[^\n])\'`
//. - StringL: `\"([^"\n]|\\["\n])*\"`
//. - WideStringL: `L\"([^"\n]|\\["\n])*\"`
//. - Identifier: `{letter}+({letter}|{digit})*`
//. - AssignOp: `*= /= %= += -= &= ^= <<= >>=`
//. - EqualOp: `== !=`
//. - RelOp: `<= >=`
//. - ShiftOp: `<< >>`
//. - LogOrOp: `||`
//. - LogAndOp: `&&`
//. - IncOp: `++ --`
//. - Scope: `::`
//. - Ellipsis: `...`
//. - PmOp: `.* ->*`
//. - ArrowOp: `->`
//. - others: `!%^&*()-+={}|~[];:<>?,./`
//. - BadToken: `others`
//.
struct Token
{
typedef int Type;
enum
{
Identifier = 258, //.< The first 256 are representing character literals.
Constant,
CharConst,
StringL,
AssignOp,
EqualOp,
RelOp,
ShiftOp,
LogOrOp,
LogAndOp,
IncOp,
Scope,
Ellipsis,
PmOp,
ArrowOp,
BadToken,
AUTO,
CHAR,
CLASS,
CONST,
DELETE,
DOUBLE,
ENUM,
EXTERN,
FLOAT,
FRIEND,
INLINE,
INT,
LONG,
NEW,
OPERATOR,
PRIVATE,
PROTECTED,
PUBLIC,
REGISTER,
SHORT,
SIGNED,
STATIC,
STRUCT,
TYPEDEF,
TYPENAME,
UNION,
UNSIGNED,
VIRTUAL,
VOID,
VOLATILE,
TEMPLATE,
MUTABLE,
BREAK,
CASE,
CONTINUE,
DEFAULT,
DO,
ELSE,
FOR,
GOTO,
IF,
OFFSETOF,
RETURN,
SIZEOF,
SWITCH,
THIS,
WHILE,
ATTRIBUTE, //=g++,
METACLASS, //=opencxx
UserKeyword,
UserKeyword2,
UserKeyword3,
UserKeyword4,
BOOLEAN,
EXTENSION, //=g++,
TRY,
CATCH,
THROW,
UserKeyword5,
NAMESPACE,
USING,
TYPEID,
TYPEOF,
WideStringL,
WideCharConst,
WCHAR,
//=non terminals,
ntDeclarator = 400,
ntName,
ntFstyleCast,
ntClassSpec,
ntEnumSpec,
ntDeclaration,
ntTypedef,
ntTemplateDecl,
ntMetaclassDecl,
ntParameterDecl,
ntLinkageSpec,
ntAccessSpec,
ntUserAccessSpec,
ntUserdefKeyword,
ntExternTemplate,
ntAccessDecl,
ntNamespaceSpec,
ntUsing,
ntTemplateInstantiation,
ntNamespaceAlias,
ntIfStatement,
ntSwitchStatement,
ntWhileStatement,
ntDoStatement,
ntForStatement,
ntBreakStatement,
ntContinueStatement,
ntReturnStatement,
ntGotoStatement,
ntCaseStatement,
ntDefaultStatement,
ntLabelStatement,
ntExprStatement,
ntTryStatement,
ntCommaExpr,
ntAssignExpr,
ntCondExpr,
ntInfixExpr,
ntPmExpr,
ntCastExpr,
ntUnaryExpr,
ntSizeofExpr,
ntNewExpr,
ntDeleteExpr,
ntArrayExpr,
ntFuncallExpr,
ntPostfixExpr,
ntUserStatementExpr,
ntDotMemberExpr,
ntArrowMemberExpr,
ntParenExpr,
ntStaticUserStatementExpr,
ntThrowExpr,
ntTypeidExpr,
ntTypeofExpr,
Ignore = 500,
ASM,
DECLSPEC,
PRAGMA,
INT64,
Comment // This could eventually be used to report all comments.
};
Token() : ptr(0), length(0), type(BadToken) {}
Token(const char *s, size_t l, Type t) : ptr(s), length(l), type(t) {}
bool operator == (char c) const { return *ptr == c && length == 1;}
const char *ptr;
size_t length;
Type type;
};
}
#endif
|