Package com.intellij.lang

Examples of com.intellij.lang.LanguageCodeInsightActionHandler


  }

  private void doTest(int expectedCallbacksCount, String... filesToLoad) throws Throwable {
    myFixture.configureByFiles(filesToLoad);

    LanguageCodeInsightActionHandler handler = CodeInsightActions.GOTO_SUPER.forLanguage(ErlangLanguage.INSTANCE);
    assertNotNull("GotoSuperHandler for Erlang was not found.", handler);

    PsiElement focusedElement = myFixture.getFile().findElementAt(myFixture.getEditor().getCaretModel().getOffset());
    ErlangFunction function = PsiTreeUtil.getParentOfType(focusedElement, ErlangFunction.class);
View Full Code Here

TOP

Related Classes of com.intellij.lang.LanguageCodeInsightActionHandler

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.