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 could not find any reference in the documentation about whether or not order was required for mixins to work, though empirically it seems fine to reference a mixin defined after you reference it. It just seems to fail in this one case where referencing a mixin in a namespace which is referencing another mixin in the same namespace and all of this is after the first reference.
The text was updated successfully, but these errors were encountered:
This less code generates an error about ".sub is undefined":
But, none of the following do, which seems inconsistent. If the namespace is first, there is no error:
Or if the the error-generating mixin is moved out a scope level higher (but still later in the file):
Or if it is referenced more explicitly:
I could not find any reference in the documentation about whether or not order was required for mixins to work, though empirically it seems fine to reference a mixin defined after you reference it. It just seems to fail in this one case where referencing a mixin in a namespace which is referencing another mixin in the same namespace and all of this is after the first reference.
The text was updated successfully, but these errors were encountered: