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
{{ message }}
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
lib.builder is buggy and the behaviour does not match the documentation.
Specifically, the '{' operator pushes the current origin onto a stack.
The '}' operator contains code whose apparent intent is to pop the previously pushed origin,
and restore the origin to what it was when '{' was called.
But the code is buggy, and it doesn't actually do that. The stack isn't popped, and the current
origin doesn't change.
The only thing that '}' actually does is set the origin_prev field to the current origin.
And that has no effect if the next operation is '*'.
It only has an effect if the very next operation is '{'.
lib.builder
is buggy and the behaviour does not match the documentation.Specifically, the
'{'
operator pushes the current origin onto a stack.The
'}'
operator contains code whose apparent intent is to pop the previously pushed origin,and restore the origin to what it was when
'{'
was called.But the code is buggy, and it doesn't actually do that. The stack isn't popped, and the current
origin doesn't change.
The only thing that
'}'
actually does is set theorigin_prev
field to the current origin.And that has no effect if the next operation is
'*'
.It only has an effect if the very next operation is
'{'
.Assigned to: @lf94
The text was updated successfully, but these errors were encountered: