Sarcasm.Unparsing.Formatter.GetBlockIndentation C# (CSharp) Method

GetBlockIndentation() public method

public GetBlockIndentation ( UnparsableAst leftTerminalLeaveIfAny, UnparsableAst target ) : BlockIndentation
leftTerminalLeaveIfAny UnparsableAst
target UnparsableAst
return BlockIndentation
        public virtual BlockIndentation GetBlockIndentation(UnparsableAst leftTerminalLeaveIfAny, UnparsableAst target)
        {
            return BlockIndentation.IndentNotNeeded;
        }

Usage Example

Esempio n. 1
0
 private BlockIndentation _GetBlockIndentation(UnparsableAst leftIfAny, UnparsableAst target)
 {
     return(formatter.GetBlockIndentation(leftIfAny, target));
 }