| 337 | }; |
| 338 | |
| 339 | static bool ExpectOpen(GLTFPropsParser& propsParser) |
| 340 | { |
| 341 | if (propsParser.GetNext().mKind != GLTFPropsParser::NodeKind_LBrace) |
| 342 | return false; |
| 343 | return true; |
| 344 | }; |
| 345 | |
| 346 | static bool ExpectClose(GLTFPropsParser& propsParser) |
| 347 | { |
no test coverage detected