-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing for
causes dotnet run to hang
#16
Comments
And I think the problem is with your parser, I tried both F# and C# stuff. They are both very slow. |
You have an example? |
|
By slow what I mean is running |
And here's some profiling stack trace
|
@SchlenkR It seems I was able to narrow down the problem. Notice above code is missing the for keyword. If you use like above then it gets stuck when you do
While admit this is a bug on our case, the error handling can be improved. Will update the title. |
for
causes dotnet run to hang
Oh, that's so nice, thanks for your work. I'll have a look at it soon! How urgent is the issue for you? Blocker in important work or so? |
Thanks, I guess so far, we don't have any problems as long as we adhere to the proper syntax. Having that said, my concern is if this issue manifests itself in a different way in the future, then it might be bad :) |
Hi I am basically trying to use Trulla for a large file. And build process becomes very slow for minutes. Any ideas?
Update:
When I miss
for
keyword as in below.,dotnet run
hangs{{x in correlationTypes}}x{{end}}
When you add the for thing then it works fine
{{for x in correlationTypes}}x{{end}}
The text was updated successfully, but these errors were encountered: