3 writes to IsInAsync
Microsoft.CodeAnalysis.CSharp (3)
Parser\LanguageParser.cs (3)
4285_parser.IsInAsync = isInAsyncContext ?? parser.IsInAsync; 4293_parser.IsInAsync = (_previousState & LanguageParserState.IsInAsync) != 0; 14369IsInAsync = state.IsInAsync;
19 references to IsInAsync
Microsoft.CodeAnalysis.CSharp (19)
Parser\LanguageParser.cs (18)
570Debug.Assert(!IsInAsync); 1697Debug.Assert(!IsInAsync); 1733Debug.Assert(!IsInAsync); 2520Debug.Assert(!IsInAsync); 2556using var _ = new ParserSyntaxContextResetter(this, isInAsyncContext: this.IsInAsync || !IsScript); 2694using var _ = new ParserSyntaxContextResetter(this, isInAsyncContext: this.IsInAsync || !IsScript); 3164Debug.Assert(!IsInAsync); 3642Debug.Assert(!IsInAsync); 4280(parser.IsInAsync ? LanguageParserState.IsInAsync : 0) | 4285_parser.IsInAsync = isInAsyncContext ?? parser.IsInAsync; 5950if (this.IsInAsync && identifierToken.ContextualKind == SyntaxKind.AwaitKeyword) 8297!IsInAsync) 9714if (this.IsInAsync && this.CurrentToken.ContextualKind == SyntaxKind.AwaitKeyword) 11209return (this.IsScript || this.IsInAsync) && this.CurrentToken.ContextualKind == SyntaxKind.AwaitKeyword; 11216if (this.IsInAsync) 13518isInAsyncContext: this.IsInAsync || modifiers.Any((int)SyntaxKind.AsyncKeyword), 13635isInAsyncContext: this.IsInAsync || modifiers.Any((int)SyntaxKind.AsyncKeyword), 14361IsInAsync,
Parser\LanguageParser_InterpolatedString.cs (1)
209var interpolationNode = ParseInterpolation(this.Options, originalText, interpolation, kind, IsInAsync, IsInFieldKeywordContext);