Exemplo n.º 1
0
 public QilNode GetLast()
 {
     if (_last == null)
     {
         // Create a let that will be fixed up later in ConstructLoop or by LastFixupVisitor
         _last = _f.Let(_f.Double(0));
     }
     return(_last);
 }
Exemplo n.º 2
0
 public QilNode GetPosition()
 {
     CheckFocus();
     return(_f.Double(1));
 }
Exemplo n.º 3
0
 public QilNode GetLast() =>
 // Create a let that will be fixed up later in ConstructLoop or by LastFixupVisitor
 _last ??= _f.Let(_f.Double(0));