What is it? in the code that cause the Editor to die? Try putting in a newline after "Exts" and it dies.
Module Module1
Sub Main()
End Sub
End Module
Public Module Exts
Private Iterator Function GenerateAscending(Of T As IComparable(Of T))(s As T, f As T, fn As Func(Of T, T), Optional inc As Boolean = True) As IEnumerable(Of T)
Dim curr = s
While curr.CompareTo(f) <= 0
Yield curr
curr = fn(curr)
End While
If inc Then Yield curr
End Function
End Module