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
error(namedEl, "Subcomponent of the same name ('" + namedEl.getName()
+ "') in component implementation");
}
}
}
}
// TODO: check name space collision with enumerated types
}
The error is flagged with this code:
package TestPackage
public
system sys
end sys;
system implementation sys.impl
subcomponents
test : device TestSensor;
annex agree {**
eq test : int = 100;
**};
end sys.impl;
device TestSensor
end TestSensor;
end TestPackage;
But it is not triggered with the following code:
package TestPackage
public
system sys
annex agree {**
eq test : int = 100;
**};
end sys;
system implementation sys.impl
subcomponents
test : device TestSensor;
end sys.impl;
device TestSensor
end TestSensor;
end TestPackage;
The text was updated successfully, but these errors were encountered:
Validator check in question (lines 1939-1948 specifically):
AGREE/com.rockwellcollins.atc.agree/src/com/rockwellcollins/atc/agree/validation/AgreeValidator.java
Lines 1899 to 1951 in 8d101f3
The error is flagged with this code:
But it is not triggered with the following code:
The text was updated successfully, but these errors were encountered: