Package org.eclipse.jdt.internal.debug.eval.ast.instructions

Examples of org.eclipse.jdt.internal.debug.eval.ast.instructions.PostfixMinusMinusOperator


    switch (char0) {
    case '+': // plus plus
      push(new PostfixPlusPlusOperator(expressionTypeId, fCounter));
      break;
    case '-': // minus minus
      push(new PostfixMinusMinusOperator(expressionTypeId, fCounter));
      break;
    default:
      setHasError(true);
      addErrorMessage(EvaluationEngineMessages.ASTInstructionCompiler_unrecognized_postfix_operator____15
          + opToken);
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.debug.eval.ast.instructions.PostfixMinusMinusOperator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.