Package com.intellij.plugins.haxe.lang.psi

Examples of com.intellij.plugins.haxe.lang.psi.HaxeCatchStatement


    return tryStatement;
  }

  @Override
  protected TextRange getSurroundSelectionRange(PsiElement element) {
    final HaxeCatchStatement catchStatement = ((HaxeTryStatement)element).getCatchStatementList().iterator().next();
    final HaxeParameter parameter = catchStatement.getParameter();
    return parameter == null ? catchStatement.getTextRange() : parameter.getTextRange();
  }
View Full Code Here

TOP

Related Classes of com.intellij.plugins.haxe.lang.psi.HaxeCatchStatement

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.