14 instantiations of Scope
System.Data.Linq (14)
SqlClient\Query\SqlResolver.cs (14)
76
this.CurrentScope = new
Scope
(null, null);
81
this.CurrentScope = new
Scope
(null, this.CurrentScope);
91
this.CurrentScope = new
Scope
(select.From, this.CurrentScope.ContainingScope);
105
this.CurrentScope = new
Scope
(select, this.CurrentScope.ContainingScope);
114
this.CurrentScope = new
Scope
(sin, this.CurrentScope.ContainingScope);
122
this.CurrentScope = new
Scope
(sup.Select, this.CurrentScope.ContainingScope);
130
this.CurrentScope = new
Scope
(sd, this.CurrentScope.ContainingScope);
142
Scope tmp = new
Scope
(join.Left, this.CurrentScope.ContainingScope);
143
this.CurrentScope = new
Scope
(null, tmp);
145
Scope tmp2 = new
Scope
(join.Right, tmp);
146
this.CurrentScope = new
Scope
(null, tmp2);
153
this.CurrentScope = new
Scope
(null, new
Scope
(join.Right, new
Scope
(join.Left, this.CurrentScope.ContainingScope)));
13 references to Scope
System.Data.Linq (13)
SqlClient\Query\SqlResolver.cs (13)
43
for (
Scope
s = this.CurrentScope; s != null; s = s.ContainingScope) {
58
internal
Scope
CurrentScope;
62
Scope
containing;
63
internal Scope(SqlNode source,
Scope
containing) {
70
internal
Scope
ContainingScope {
80
Scope
save = this.CurrentScope;
90
Scope
save = this.CurrentScope;
113
Scope
save = this.CurrentScope;
121
Scope
save = this.CurrentScope;
129
Scope
save = this.CurrentScope;
137
Scope
save = this.CurrentScope;
142
Scope
tmp = new Scope(join.Left, this.CurrentScope.ContainingScope);
145
Scope
tmp2 = new Scope(join.Right, tmp);