Examples of ErlangIntroduceVariableHandler


Examples of org.intellij.erlang.refactoring.introduce.ErlangIntroduceVariableHandler

  }

  @Nullable
  @Override
  public RefactoringActionHandler getIntroduceVariableHandler() {
    return new ErlangIntroduceVariableHandler();
  }
View Full Code Here

Examples of org.intellij.erlang.refactoring.introduce.ErlangIntroduceVariableHandler

  private void doTest() { doTest(ALL); }

  private void doTest(ReplaceStrategy replaceStrategy)  {
    String name = getTestName(true);
    myFixture.configureByFile(name + ".erl");
    new ErlangIntroduceVariableHandler(replaceStrategy).invoke(myFixture.getProject(), myFixture.getEditor(), myFixture.getFile(), null);
    myFixture.checkResultByFile(name + "-after.erl");
  }
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.