| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
// [cfe] Couldn't find constructor 'C3'.It might be nice if it could say "more than one constructor named 'C3' is declared", because it's confusing that it couldn't find any such constructor when you're looking at one of them.
C4.other(int x) : this.named(x);Same consideration.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
It might be nice if it could say "more than one constructor named 'C3' is declared", because it's confusing that it couldn't find any such constructor when you're looking at one of them.
This is addressed in a follow-up.
C4.other(int x) : this.named(x);Johnni WintherSame consideration.
Same.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[cfe][PrimaryConstructors] Add isRedirecting/SuperInitializer flags to InvalidInitializer
This adds isRedirectingInitializer and isSuperInitializer to the Initializer hierarchy and adds flags to InvalidInitializer to signal when the InvalidInitializer should be taking as a redirecting or super initializer. This allows us to avoid miscatergorizing such declarations when they are erroneous.
Part of #61700
TEST=existing
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |