Package org.intellij.erlang.refactoring.introduce

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


  }

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


  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

Related Classes of org.intellij.erlang.refactoring.introduce.ErlangIntroduceVariableHandler

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.