Examples of ErlangExtractFunctionHandler


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

  }

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

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

  public void testAtom()   throws Throwable { doTest(); }
  public void testQuotedAtom() throws Throwable { doTest(); }

  private void doTest() throws Throwable {
    myFixture.configureByFile(getTestName(true) + ".erl");
    new ErlangExtractFunctionHandler().invoke(myFixture.getProject(), myFixture.getEditor(), myFixture.getFile(), null);
    myFixture.checkResultByFile(getTestName(true) + "-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.