7 references to Scopes
System.Linq.Expressions (7)
System\Linq\Expressions\Compiler\LambdaCompiler.cs (2)
92_scope = tree.Scopes[lambda]; 152_scope = _tree.Scopes[invocation];
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (1)
90if (!_tree.Scopes.TryGetValue(node, out CompilerScope? scope))
System\Linq\Expressions\Compiler\VariableBinder.cs (4)
87_scopes.Push(_tree.Scopes[node] = new CompilerScope(node, true)); 103_scopes.Push(_tree.Scopes[node] = new CompilerScope(lambda, false)); 124_scopes.Push(_tree.Scopes[node] = new CompilerScope(node, false)); 138_scopes.Push(_tree.Scopes[node] = new CompilerScope(node, false));