git://secure.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
71b1e010ff996d862b1452a5af767c1f58961e98
[phpeclipse.git]
/
net.sourceforge.phpeclipse
/
src
/
net
/
sourceforge
/
phpdt
/
internal
/
compiler
/
ast
/
MagicLiteral.java
1
package net.sourceforge.phpdt.internal.compiler.ast;
2
3
/**
4
* @author Matthieu Casanova
5
*/
6
public abstract class MagicLiteral extends Literal {
7
8
public MagicLiteral(final int sourceStart, final int sourceEnd) {
9
super(sourceStart, sourceEnd);
10
}
11
}