MCPcopy Create free account
hub / github.com/WheretIB/nullc / ParseVariableDefine

Function ParseVariableDefine

NULLC/Parser.cpp:1367–1378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1365}
1366
1367bool ParseVariableDefine(Lexeme** str)
1368{
1369 Lexeme *curr = *str;
1370 SetCurrentAlignment(0xFFFFFFFF);
1371 ParseAlignment(&curr);
1372 if(!ParseSelectType(&curr))
1373 return false;
1374 if(!ParseVariableDefineSub(&curr))
1375 return false;
1376 *str = curr;
1377 return true;
1378}
1379
1380bool ParseIfExpr(Lexeme** str, bool isStatic)
1381{

Callers 2

ParseForExprFunction · 0.85
ParseExpressionFunction · 0.85

Calls 4

SetCurrentAlignmentFunction · 0.85
ParseAlignmentFunction · 0.85
ParseSelectTypeFunction · 0.85
ParseVariableDefineSubFunction · 0.85

Tested by

no test coverage detected