CodeSonar C++ API
[For improved navigation, enable JavaScript.]
cs_syntax_kind_decls.hpp
Go to the documentation of this file.
1 
2 /*
3  * Copyright (c) 2023, an unpublished work by CodeSecure, Inc.
4  * ALL RIGHTS RESERVED
5  *
6  * Copyright (c) 2013-2023, an unpublished work by GrammaTech, Inc.
7  * ALL RIGHTS RESERVED
8  *
9  * This software is furnished under a license and may be used and
10  * copied only in accordance with the terms of such license and the
11  * inclusion of the above copyright notice. This software or any
12  * other copies thereof may not be provided or otherwise made
13  * available to any other person. Title to and ownership of the
14  * software is retained by CodeSecure, Inc.
15  */
21  static const syntax_kind COMMENT;
22 
23 
25  static const syntax_kind MACRO;
26 
27 
29  static const syntax_kind PREPROCESSOR;
30 
31 
33  static const syntax_kind INCLUDE;
34 
35 
37  static const syntax_kind KEYWORD;
38 
39 
41  static const syntax_kind OPCODE;
42 
43 
45  static const syntax_kind LABEL;
46 
47 
49  static const syntax_kind GRAYOUT;
50 
51 
53  static const syntax_kind STRING;
54 
55 
57  static const syntax_kind INCLUDE_DIRECTIVE;
static const syntax_kind OPCODE
Assembly language opcode.
Definition: cs_syntax_kind_decls.hpp:41
static const syntax_kind GRAYOUT
Code present in the underlying source file but removed by the preprocessor for the compilation unit c...
Definition: cs_syntax_kind_decls.hpp:49
static const syntax_kind STRING
String literal.
Definition: cs_syntax_kind_decls.hpp:53
static const syntax_kind COMMENT
Code comment.
Definition: cs_syntax_kind_decls.hpp:21
static const syntax_kind INCLUDE
Preprocessor include directive.
Definition: cs_syntax_kind_decls.hpp:33
static const syntax_kind LABEL
Statement label.
Definition: cs_syntax_kind_decls.hpp:45
static const syntax_kind PREPROCESSOR
Preprocessor directive.
Definition: cs_syntax_kind_decls.hpp:29
static const syntax_kind MACRO
Macro name.
Definition: cs_syntax_kind_decls.hpp:25
static const syntax_kind INCLUDE_DIRECTIVE
Preprocessor include directive.
Definition: cs_syntax_kind_decls.hpp:57
static const syntax_kind KEYWORD
Programming language keyword.
Definition: cs_syntax_kind_decls.hpp:37