Examples of HaxeWhileStatement


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

*/
public class HaxeWhileSurrounder extends HaxeManyStatementsSurrounder {
  @NotNull
  @Override
  protected PsiElement doSurroundElements(PsiElement[] elements, PsiElement parent) {
    final HaxeWhileStatement whileStatement =
      (HaxeWhileStatement)HaxeElementGenerator.createStatementFromText(elements[0].getProject(), "while(a) {\n}");
    addStatements(whileStatement.getBlockStatement(), elements);
    return whileStatement;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.