Sarcasm.Unparsing.Formatter.GetBlockIndentation C# (CSharp) Méthode

GetBlockIndentation() public méthode

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

Usage Example

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