git://secure.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
d1107b1267421d0ed4ac7b6d1d78d5af8715a09e
[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
protected MagicLiteral(final int sourceStart, final int sourceEnd) {
9
super(sourceStart, sourceEnd);
10
}
11
}