mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Most of these are places where we failed to include a header file and simply never got an error about this. The fix is to include the header file. Most other cases are functions that should have been marked `static` but were not. Finding all of these was a main motivation for me enabling the warning despite how much work it is. One complicating factor was that we weren't including the `handle.h` for all the state-based handler functions. While this isn't a tiny amount of code, it is just declarations and doesn't add any extra dependencies. It also lets us have the checking for which functions need to be `static` and which don't. For the `parse` library I had to add the `handle.h` header as well, I tried to match the design of it in `check`. I have also had to work around a bug in the warning, but given the value it seems to be providing, that seems reasonable. I've filed the bug upstream: https://github.com/llvm/llvm-project/issues/94138 I also had to use some hacks to work around limitations of Bazel rules that wrap `cc_library` rules and don't expose `copts`. I filed a bug for `cc_proto_library` specifically: ~https://github.com/bazelbuild/bazel/issues/22610~ https://github.com/bazelbuild/bazel/issues/4446
49 lines
1.7 KiB
C++
49 lines
1.7 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#include "toolchain/lex/token_kind.h"
|
|
#include "toolchain/lex/tokenized_buffer.h"
|
|
#include "toolchain/parse/context.h"
|
|
#include "toolchain/parse/handle.h"
|
|
#include "toolchain/parse/node_kind.h"
|
|
#include "toolchain/parse/state.h"
|
|
|
|
namespace Carbon::Parse {
|
|
|
|
auto HandleArrayExpr(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
context.AddLeafNode(NodeKind::ArrayExprStart,
|
|
context.ConsumeChecked(Lex::TokenKind::OpenSquareBracket),
|
|
state.has_error);
|
|
context.PushState(state, State::ArrayExprSemi);
|
|
context.PushState(State::Expr);
|
|
}
|
|
|
|
auto HandleArrayExprSemi(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
auto semi = context.ConsumeIf(Lex::TokenKind::Semi);
|
|
if (!semi) {
|
|
context.AddNode(NodeKind::ArrayExprSemi, *context.position(),
|
|
state.subtree_start, true);
|
|
CARBON_DIAGNOSTIC(ExpectedArraySemi, Error, "Expected `;` in array type.");
|
|
context.emitter().Emit(*context.position(), ExpectedArraySemi);
|
|
state.has_error = true;
|
|
} else {
|
|
context.AddNode(NodeKind::ArrayExprSemi, *semi, state.subtree_start,
|
|
state.has_error);
|
|
}
|
|
context.PushState(state, State::ArrayExprFinish);
|
|
if (!context.PositionIs(Lex::TokenKind::CloseSquareBracket)) {
|
|
context.PushState(State::Expr);
|
|
}
|
|
}
|
|
|
|
auto HandleArrayExprFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
context.ConsumeAndAddCloseSymbol(*(Lex::TokenIterator(state.token)), state,
|
|
NodeKind::ArrayExpr);
|
|
}
|
|
|
|
} // namespace Carbon::Parse
|