MCPcopy Create free account
hub / github.com/OpenSteam001/OpenSteamTool / parseScopedName

Method parseScopedName

tools/ipc_codegen/ipc_codegen.cpp:421–428  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

419 }
420
421 std::string parseScopedName() {
422 std::string result = expect(Tok::Ident, "identifier").text;
423 while (token_.kind == Tok::Scope) {
424 advance();
425 result += "::" + expect(Tok::Ident, "identifier").text;
426 }
427 return result;
428 }
429
430 void validate(const File& file) {
431 std::unordered_set<std::string> typeNames;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected