/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

  1. package net.sourceforge.phpdt.internal.compiler.ast;
  2. /**
  3. * Variable suffix. class access or [something] Should it be an expression ?
  4. *
  5. * @author Matthieu Casanova
  6. */
  7. public abstract class AbstractSuffixExpression extends Expression {
  8. protected AbstractSuffixExpression(Type type,
  9. int sourceStart,
  10. int sourceEnd,
  11. int beginLine,
  12. int endLine,
  13. int beginColumn,
  14. int endColumn) {
  15. super(type, sourceStart, sourceEnd, beginLine, endLine, beginColumn, endColumn);
  16. }
  17. }