Binder\Binder_Statements.cs (15)
34get { return Next.LockedOrDisposedVariables; }
231Next?.ValidateYield(node, diagnostics);
304return this.Next.BindLockStatementParts(diagnostics, originalBinder);
316return this.Next.BindUsingStatementParts(diagnostics, originalBinder);
494binder.Next.LookupSymbolsWithFallback(result, node.Identifier.ValueText, arity: 0, useSiteInfo: ref useSiteInfo, options: LookupOptions.LabelsOnly);
1850return Next.LookupLocal(nameToken);
1855return Next.LookupLocalFunction(nameToken);
2744return this.Next.BindSwitchStatementCore(node, originalBinder, diagnostics);
2749this.Next.BindPatternSwitchLabelForInference(node, diagnostics);
2763return this.Next.BindWhileParts(diagnostics, originalBinder);
2776return this.Next.BindDoParts(diagnostics, originalBinder);
2788return this.Next.BindForParts(diagnostics, originalBinder);
2885return this.Next.BindForEachParts(diagnostics, originalBinder);
2893return this.Next.BindForEachDeconstruction(diagnostics, originalBinder);
2923binder = binder.Next;