예제 #1
0
파일: Focus.cs 프로젝트: rsumner31/corefx2
 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);
 }
예제 #2
0
파일: Focus.cs 프로젝트: rsumner31/corefx2
 public QilNode GetPosition()
 {
     CheckFocus();
     return(_f.Double(1));
 }
예제 #3
0
파일: Focus.cs 프로젝트: mikem8361/runtime
 public QilNode GetLast() =>
 // Create a let that will be fixed up later in ConstructLoop or by LastFixupVisitor
 _last ??= _f.Let(_f.Double(0));