Esempio 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);
 }
Esempio n. 2
0
 public QilNode GetPosition()
 {
     CheckFocus();
     return(_f.Double(1));
 }
Esempio 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));