Package com.intellij.plugins.haxe.lang.psi.impl

Examples of com.intellij.plugins.haxe.lang.psi.impl.HaxeExpressionCodeFragmentImpl$MyHaxeFileElementType


    return psiFile;
  }

  public static PsiFile createExpressionCodeFragment(Project myProject, String text, PsiElement context, boolean resolveScope) {
    final String name = "dummy." + HaxeFileType.HAXE_FILE_TYPE.getDefaultExtension();
    HaxeExpressionCodeFragmentImpl codeFragment = new HaxeExpressionCodeFragmentImpl(myProject, name, text, true);
    codeFragment.setContext(context);
    return codeFragment;
  }
View Full Code Here

TOP

Related Classes of com.intellij.plugins.haxe.lang.psi.impl.HaxeExpressionCodeFragmentImpl$MyHaxeFileElementType

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.