Skip to content

Commit 8452129

Browse files
authored
Merge branch 'master' into dyndispatch
2 parents 8de0a2e + 1c77c44 commit 8452129

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

tools/slang-cpp-extractor/slang-cpp-extractor-main.cpp

+47
Original file line numberDiff line numberDiff line change
@@ -1288,21 +1288,68 @@ void CPPExtractor::_consumeTypeModifiers()
12881288
while (advanceIfStyle(IdentifierStyle::TypeModifier));
12891289
}
12901290

1291+
// True if two of these token types of the same type placed immediately after one another
1292+
// produce a different token. Can be conservative, as if not strictly required
1293+
// it will just mean more spacing in the output
1294+
static bool _canRepeatTokenType(TokenType type)
1295+
{
1296+
switch (type)
1297+
{
1298+
case TokenType::OpAdd:
1299+
case TokenType::OpSub:
1300+
case TokenType::OpAnd:
1301+
case TokenType::OpOr:
1302+
case TokenType::OpGreater:
1303+
case TokenType::OpLess:
1304+
case TokenType::Identifier:
1305+
case TokenType::OpAssign:
1306+
case TokenType::Colon:
1307+
{
1308+
return false;
1309+
}
1310+
default: break;
1311+
}
1312+
return true;
1313+
}
1314+
1315+
// Returns true if there needs to be a spave between the previous token type, and the current token
1316+
// type for correct output. It is assumed that the token stream is appropriate.
1317+
// The implementation might need more sophistication, but this at least avoids Blah const * -> Blahconst*
1318+
static bool _tokenConcatNeedsSpace(TokenType prev, TokenType cur)
1319+
{
1320+
if ((cur == TokenType::OpAssign) ||
1321+
(prev == cur && !_canRepeatTokenType(cur)))
1322+
{
1323+
return true;
1324+
}
1325+
return false;
1326+
}
1327+
12911328
UnownedStringSlice CPPExtractor::_concatTokens(TokenReader::ParsingCursor start)
12921329
{
12931330
auto endCursor = m_reader.getCursor();
12941331
m_reader.setCursor(start);
12951332

1333+
TokenType prevTokenType = TokenType::Unknown;
1334+
12961335
StringBuilder buf;
12971336
while (!m_reader.isAtCursor(endCursor))
12981337
{
12991338
const Token token = m_reader.advanceToken();
1339+
// Check if we need a space between tokens
1340+
if (_tokenConcatNeedsSpace(prevTokenType, token.type))
1341+
{
1342+
buf << " ";
1343+
}
13001344
buf << token.getContent();
1345+
1346+
prevTokenType = token.type;
13011347
}
13021348

13031349
return m_typePool->getSlice(m_typePool->add(buf));
13041350
}
13051351

1352+
13061353
SlangResult CPPExtractor::_maybeParseType(UnownedStringSlice& outType, Index& ioTemplateDepth)
13071354
{
13081355
auto startCursor = m_reader.getCursor();

0 commit comments

Comments
 (0)