1 instantiation of WithNode
Microsoft.ML.Transforms (1)
Expression\LambdaParser.cs (1)
768
return new
WithNode
(tok, local, body);
19 references to WithNode
Microsoft.ML.Transforms (19)
Expression\CodeGen.cs (2)
1308
public override bool PreVisit(
WithNode
node)
1410
public override void PostVisit(
WithNode
node)
Expression\LambdaBinder.cs (5)
26
private readonly List<
WithNode
> _rgwith;
38
_rgwith = new List<
WithNode
>();
152
var
with = _rgwith[i];
1606
public override bool PreVisit(
WithNode
node)
1631
public override void PostVisit(
WithNode
node)
Expression\LambdaParser.cs (1)
732
private
WithNode
ParseWith(Token tokWith = null)
Expression\Node.cs (10)
133
public virtual bool PreVisit(
WithNode
node) { return true; }
143
public abstract void PostVisit(
WithNode
node);
157
public abstract void Visit(
WithNode
node);
168
public override bool PreVisit(
WithNode
node) { Visit(node); return false; }
178
public override void PostVisit(
WithNode
node) { Contracts.Assert(false); }
233
public virtual
WithNode
AsWith { get { return Cast<
WithNode
>(); } }
234
public virtual
WithNode
TestWith { get { return null; } }
1150
public override
WithNode
AsWith { get { return this; } }
1151
public override
WithNode
TestWith { get { return this; } }
Expression\Printer.cs (1)
546
public override void Visit(
WithNode
node)