| 4344 | } |
| 4345 | |
| 4346 | bool IsIndexOperator( const ASTNode* node ) |
| 4347 | { |
| 4348 | return node->GetNodeType() == NT_POSTFIX_EXPRESSION && node->GetToken() && node->GetToken()->type == OP_LEFT_BRACKET; |
| 4349 | } |
| 4350 | |
| 4351 | void ExpandInitializerList( ASTNode* initializer, std::vector<ASTNode*>& children ) |
| 4352 | { |
no test coverage detected