Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / jsreflect.h
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2  * vim: set ts=8 sw=4 et tw=99 ft=cpp:
3  *
4  * ***** BEGIN LICENSE BLOCK *****
5  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6  *
7  * The contents of this file are subject to the Mozilla Public License Version
8  * 1.1 (the "License"); you may not use this file except in compliance with
9  * the License. You may obtain a copy of the License at
10  * http://www.mozilla.org/MPL/
11  *
12  * Software distributed under the License is distributed on an "AS IS" basis,
13  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14  * for the specific language governing rights and limitations under the
15  * License.
16  *
17  * The Original Code is Mozilla SpiderMonkey JavaScript 1.9 code, released
18  * June 12, 2009.
19  *
20  * The Initial Developer of the Original Code is
21  *   the Mozilla Corporation.
22  *
23  * Contributor(s):
24  *   Dave Herman <dherman@mozilla.com>
25  *
26  * Alternatively, the contents of this file may be used under the terms of
27  * either of the GNU General Public License Version 2 or later (the "GPL"),
28  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29  * in which case the provisions of the GPL or the LGPL are applicable instead
30  * of those above. If you wish to allow use of your version of this file only
31  * under the terms of either the GPL or the LGPL, and not to allow others to
32  * use your version of this file under the terms of the MPL, indicate your
33  * decision by deleting the provisions above and replace them with the notice
34  * and other provisions required by the GPL or the LGPL. If you do not delete
35  * the provisions above, a recipient may use your version of this file under
36  * the terms of any one of the MPL, the GPL or the LGPL.
37  *
38  * ***** END LICENSE BLOCK ***** */
39
40 /*
41  * JS reflection package.
42  */
43 #ifndef jsreflect_h___
44 #define jsreflect_h___
45
46 #include <stdlib.h>
47 #include "jspubtd.h"
48
49 namespace js {
50
51 enum ASTType {
52     AST_ERROR = -1,
53 #define ASTDEF(ast, str, method) ast,
54 #include "jsast.tbl"
55 #undef ASTDEF
56     AST_LIMIT
57 };
58
59 enum AssignmentOperator {
60     AOP_ERR = -1,
61
62     /* assign */
63     AOP_ASSIGN = 0,
64     /* operator-assign */
65     AOP_PLUS, AOP_MINUS, AOP_STAR, AOP_DIV, AOP_MOD,
66     /* shift-assign */
67     AOP_LSH, AOP_RSH, AOP_URSH,
68     /* binary */
69     AOP_BITOR, AOP_BITXOR, AOP_BITAND,
70
71     AOP_LIMIT
72 };
73
74 enum BinaryOperator {
75     BINOP_ERR = -1,
76
77     /* eq */
78     BINOP_EQ = 0, BINOP_NE, BINOP_STRICTEQ, BINOP_STRICTNE,
79     /* rel */
80     BINOP_LT, BINOP_LE, BINOP_GT, BINOP_GE,
81     /* shift */
82     BINOP_LSH, BINOP_RSH, BINOP_URSH,
83     /* arithmetic */
84     BINOP_PLUS, BINOP_MINUS, BINOP_STAR, BINOP_DIV, BINOP_MOD,
85     /* binary */
86     BINOP_BITOR, BINOP_BITXOR, BINOP_BITAND,
87     /* misc */
88     BINOP_IN, BINOP_INSTANCEOF,
89     /* xml */
90     BINOP_DBLDOT,
91
92     BINOP_LIMIT
93 };
94
95 enum UnaryOperator {
96     UNOP_ERR = -1,
97
98     UNOP_DELETE = 0,
99     UNOP_NEG,
100     UNOP_POS,
101     UNOP_NOT,
102     UNOP_BITNOT,
103     UNOP_TYPEOF,
104     UNOP_VOID,
105
106     UNOP_LIMIT
107 };
108
109 enum VarDeclKind {
110     VARDECL_ERR = -1,
111     VARDECL_VAR = 0,
112     VARDECL_CONST,
113     VARDECL_LET,
114     VARDECL_LET_HEAD,
115     VARDECL_LIMIT
116 };
117
118 enum PropKind {
119     PROP_ERR = -1,
120     PROP_INIT = 0,
121     PROP_GETTER,
122     PROP_SETTER,
123     PROP_LIMIT
124 };
125
126 extern char const *aopNames[];
127 extern char const *binopNames[];
128 extern char const *unopNames[];
129 extern char const *nodeTypeNames[];
130
131 } /* namespace js */
132
133 extern js::Class js_ReflectClass;
134
135 extern JSObject *
136 js_InitReflectClass(JSContext *cx, JSObject *obj);
137
138
139 #endif /* jsreflect_h___ */