blob: 6c063d0209f907092d691fb9bdc2427d54eb251a [file] [log] [blame]
package org.eclipse.jdt.internal.compiler.ast;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jdt.internal.compiler.*;
public abstract class MagicLiteral extends Literal {
public MagicLiteral(int s , int e) {
super(s,e);
}
public boolean isValidJavaStatement(){
//should never be reach, but with a bug in the ast tree....
//see comment on the Statement class
return false ;}
/**
* source method comment.
*/
public char[] source() {
return null;
}
public String toStringExpression(){
return new String(source()) ; }
}