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
One of the recently introduced changes regarding keyword parameters is the handling of common keyword parameters in data declarations: all common keyword parameters apply to all constructors, even if the declaration is spread across several data declarations. For example, m().a should have a value given the following declarations
data L(int a = 1, int b = 2 * a) = l(int c = 2 * b);
data L(int d = -1) = m();
The relevant tests can be found in: lang::rascal::tests::functionality::KeywordParameterImportTests.
The text was updated successfully, but these errors were encountered:
One of the recently introduced changes regarding keyword parameters is the handling of common keyword parameters in data declarations: all common keyword parameters apply to all constructors, even if the declaration is spread across several data declarations. For example,
m().a
should have a value given the following declarationsThe relevant tests can be found in:
lang::rascal::tests::functionality::KeywordParameterImportTests
.The text was updated successfully, but these errors were encountered: