/plugins/PHPParser/tags/PHPParser-1.2.6/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractSuffixExpression.java
# · Java · 18 lines · 12 code · 1 blank · 5 comment · 0 complexity · 39b3d92f2f01e7ca93eef96249c6df31 MD5 · raw file
- package net.sourceforge.phpdt.internal.compiler.ast;
- /**
- * Variable suffix. class access or [something] Should it be an expression ?
- *
- * @author Matthieu Casanova
- */
- public abstract class AbstractSuffixExpression extends Expression {
- protected AbstractSuffixExpression(Type type,
- int sourceStart,
- int sourceEnd,
- int beginLine,
- int endLine,
- int beginColumn,
- int endColumn) {
- super(type, sourceStart, sourceEnd, beginLine, endLine, beginColumn, endColumn);
- }
- }