@@ -1288,21 +1288,68 @@ void CPPExtractor::_consumeTypeModifiers()
1288
1288
while (advanceIfStyle (IdentifierStyle::TypeModifier));
1289
1289
}
1290
1290
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
+
1291
1328
UnownedStringSlice CPPExtractor::_concatTokens (TokenReader::ParsingCursor start)
1292
1329
{
1293
1330
auto endCursor = m_reader.getCursor ();
1294
1331
m_reader.setCursor (start);
1295
1332
1333
+ TokenType prevTokenType = TokenType::Unknown;
1334
+
1296
1335
StringBuilder buf;
1297
1336
while (!m_reader.isAtCursor (endCursor))
1298
1337
{
1299
1338
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
+ }
1300
1344
buf << token.getContent ();
1345
+
1346
+ prevTokenType = token.type ;
1301
1347
}
1302
1348
1303
1349
return m_typePool->getSlice (m_typePool->add (buf));
1304
1350
}
1305
1351
1352
+
1306
1353
SlangResult CPPExtractor::_maybeParseType (UnownedStringSlice& outType, Index& ioTemplateDepth)
1307
1354
{
1308
1355
auto startCursor = m_reader.getCursor ();
0 commit comments