1 /*******************************************************************************
2 * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v0.5
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v05.html
9 * IBM Corporation - initial API and implementation
10 ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.ast;
13 public interface OperatorIds {
14 public static final int AND_AND = 0;
15 public static final int OR_OR = 1;
16 public static final int AND = 2;
17 public static final int OR = 3;
18 public static final int LESS = 4;
19 public static final int LESS_EQUAL = 5;
20 public static final int GREATER = 6;
21 public static final int GREATER_EQUAL = 7;
22 public static final int XOR = 8;
23 public static final int DIVIDE = 9;
24 public static final int LEFT_SHIFT = 10;
25 public static final int NOT = 11;
26 public static final int TWIDDLE = 12;
27 public static final int MINUS = 13;
28 public static final int PLUS = 14;
29 public static final int MULTIPLY = 15;
30 public static final int REMAINDER = 16;
31 public static final int RIGHT_SHIFT = 17;
32 public static final int EQUAL_EQUAL = 18;
33 public static final int UNSIGNED_RIGHT_SHIFT= 19;
34 public static final int NumberOfTables = 20;
36 public static final int QUESTIONCOLON = 23;
38 public static final int NOT_EQUAL = 29;
39 public static final int EQUAL = 30;
40 public static final int INSTANCEOF = 31;
41 public static final int PLUS_PLUS = 32;
42 public static final int MINUS_MINUS = 33;