Package com.intellij.formatting.templateLanguages

Examples of com.intellij.formatting.templateLanguages.BlockWithParent


  @Override
  public Wrap createChildWrap(ASTNode child) {
    Wrap defaultWrap = super.createChildWrap(child);
    IElementType childType = child.getElementType();
    BlockWithParent parent = getParent();
    Wrap childWrap = parent instanceof CfmlBlock ? ((CfmlBlock)parent).getChildWrap() : null;
    Wrap wrap = myWrappingProcessor.createChildWrap(child, defaultWrap, childWrap);

    if (CfmlFormatterUtil.isAssignmentOperator(childType)) {
      myChildWrap = wrap;
View Full Code Here

TOP

Related Classes of com.intellij.formatting.templateLanguages.BlockWithParent

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.