blob: 750864468b1273b899ac23f82ab6108d0d5fa8ad [file] [log] [blame]
package org.eclipse.jdt.internal.compiler.ast;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
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()) ; }
}