| 6400 | } |
| 6401 | |
| 6402 | void TParseContext::nestedStructCheck(const TSourceLoc& loc) |
| 6403 | { |
| 6404 | if (structNestingLevel > 0 || blockNestingLevel > 0) |
| 6405 | error(loc, "cannot nest a structure definition inside a structure or block", "", ""); |
| 6406 | ++structNestingLevel; |
| 6407 | } |
| 6408 | |
| 6409 | void TParseContext::arrayObjectCheck(const TSourceLoc& loc, const TType& type, const char* op) |
| 6410 | { |