*******************************************************************************/
package net.sourceforge.phpdt.internal.compiler.ast;
+import net.sourceforge.phpdt.core.compiler.ITerminalSymbols.TokenName;
import net.sourceforge.phpdt.internal.compiler.ASTVisitor;
import net.sourceforge.phpdt.internal.compiler.flow.FlowContext;
import net.sourceforge.phpdt.internal.compiler.flow.FlowInfo;
public class EqualExpression extends BinaryExpression {
public EqualExpression(Expression left, Expression right, int operator) {
- super(left, right, operator);
+ super (left, right, operator);
}
public FlowInfo analyseCode(BlockScope currentScope,