Exemplo n.º 1
0
        /// <summary>
        /// A position is inside a property body only if it is inside an expression body.
        /// All block bodies for properties are part of the accessor declaration (a type
        /// of BaseMethodDeclaration), not the property declaration.
        /// </summary>
        internal static bool IsInBody(int position,
                                      IndexerDeclarationSyntax indexer)
        {
            var exprOpt = indexer.GetExpressionBodySyntax();

            return(IsInExpressionBody(position, exprOpt, indexer.SemicolonToken));
        }
Exemplo n.º 2
0
 /// <summary>
 /// A position is inside a property body only if it is inside an expression body.
 /// All block bodies for properties are part of the accessor declaration (a type
 /// of BaseMethodDeclaration), not the property declaration.
 /// </summary>
 internal static bool IsInBody(int position, IndexerDeclarationSyntax indexer) =>
 IsInBody(
     position,
     blockOpt: null,
     indexer.GetExpressionBodySyntax(),
     indexer.SemicolonToken
     );
Exemplo n.º 3
0
 /// <summary>
 /// A position is inside a property body only if it is inside an expression body.
 /// All block bodies for properties are part of the accessor declaration (a type
 /// of BaseMethodDeclaration), not the property declaration.
 /// </summary>
 internal static bool IsInBody(int position,
                               IndexerDeclarationSyntax indexer)
 => IsInBody(position, default(BlockSyntax), indexer.GetExpressionBodySyntax(), indexer.SemicolonToken);
Exemplo n.º 4
0
 /// <summary>
 /// A position is inside a property body only if it is inside an expression body.
 /// All block bodies for properties are part of the accessor declaration (a type
 /// of BaseMethodDeclaration), not the property declaration.
 /// </summary>
 internal static bool IsInBody(int position,
     IndexerDeclarationSyntax indexer)
 {
     var exprOpt = indexer.GetExpressionBodySyntax();
     return IsInExpressionBody(position, exprOpt, indexer.SemicolonToken);
 }
Exemplo n.º 5
0
 /// <summary>
 /// A position is inside a property body only if it is inside an expression body.
 /// All block bodies for properties are part of the accessor declaration (a type
 /// of BaseMethodDeclaration), not the property declaration.
 /// </summary>
 internal static bool IsInBody(int position,
     IndexerDeclarationSyntax indexer)
     => IsInBody(position, default(BlockSyntax), indexer.GetExpressionBodySyntax(), indexer.SemicolonToken);