mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Update basic diagnostic capitalization/punctuation (#4328)
This is a primarily automated change:
- Search & replace for capitalization
-
`(CARBON_DIAGNOSTIC\((?:\n\s+)?\w+,(?:\n\s+)?\s\w+,(?:\n\s+)?\s")([A-Z])`
- `$1\L$2`
- Search & replace for period
-
`(CARBON_DIAGNOSTIC\((?:\n\s+)?\w+,(?:\n\s+)?\s\w+,(?:\n\s+)?\s"(?:[^)]|\n)+)\.("[,)])`
- `$1$2`
- Limited search & replace for `ERROR: ` -> `error: ` in streamed things
- Leaving a TODO for command_line because there's more cleanup that can
be done there
- Modify diagnostic_consumer.cpp
- ERROR -> error
- WARNING -> warning
---------
Co-authored-by: Richard Smith <richard@metafoo.co.uk>
This commit is contained in:
co-authored by
Richard Smith
parent
7f6d684b29
commit
e7aebbe581
@@ -20,7 +20,7 @@ auto HandleIfExprFinishCondition(Context& context) -> void {
|
||||
} else {
|
||||
// TODO: Include the location of the `if` token.
|
||||
CARBON_DIAGNOSTIC(ExpectedThenAfterIf, Error,
|
||||
"Expected `then` after `if` condition.");
|
||||
"expected `then` after `if` condition");
|
||||
if (!state.has_error) {
|
||||
context.emitter().Emit(*context.position(), ExpectedThenAfterIf);
|
||||
}
|
||||
@@ -45,7 +45,7 @@ auto HandleIfExprFinishThen(Context& context) -> void {
|
||||
} else {
|
||||
// TODO: Include the location of the `if` token.
|
||||
CARBON_DIAGNOSTIC(ExpectedElseAfterIf, Error,
|
||||
"Expected `else` after `if ... then ...`.");
|
||||
"expected `else` after `if ... then ...`");
|
||||
if (!state.has_error) {
|
||||
context.emitter().Emit(*context.position(), ExpectedElseAfterIf);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user