You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having trouble when nesting functions. I defined a simple minimum function that takes 2 parameters and returns the lower of the two (see below). When used in isolation the function works as expected.
When using min(1,min(2,3)) (or any other case where one function is nested into another one) I get a BrackedNotClosedException (line 438 in parser.dart).
It seems that the parser separates min(2, as a second parameter to the first min function.
I started working on this issue a while ago but it requires a considerable rewrite, so it took more time than expected and got pushed away by some other urgent tasks.
Consider this reply as an indicator that I've seen your report and I value it a lot, I'll return to fixing it ASAP, thank you for filing the issue!
Thanks a lot for the great library.
I am having trouble when nesting functions. I defined a simple minimum function that takes 2 parameters and returns the lower of the two (see below). When used in isolation the function works as expected.
When using
min(1,min(2,3))
(or any other case where one function is nested into another one) I get a BrackedNotClosedException (line 438 in parser.dart).It seems that the parser separates
min(2,
as a second parameter to the first min function.The text was updated successfully, but these errors were encountered: