Sarcasm.Unparsing.Formatter.GetBlockIndentation C# (CSharp) Метод

GetBlockIndentation() публичный Метод

public GetBlockIndentation ( UnparsableAst leftTerminalLeaveIfAny, UnparsableAst target ) : BlockIndentation
leftTerminalLeaveIfAny UnparsableAst
target UnparsableAst
Результат BlockIndentation
        public virtual BlockIndentation GetBlockIndentation(UnparsableAst leftTerminalLeaveIfAny, UnparsableAst target)
        {
            return BlockIndentation.IndentNotNeeded;
        }

Usage Example

Пример #1
0
 private BlockIndentation _GetBlockIndentation(UnparsableAst leftIfAny, UnparsableAst target)
 {
     return(formatter.GetBlockIndentation(leftIfAny, target));
 }