Files
littlefs/scripts
Christopher Haster 4d76551d6b Fixed parse errors in prettyasserts.py caused by ternary operators
Because of course ternary operators would cause problems.

The two problem:

  LFS_ASSERT((exists) ? !err : err == LFS_ERR_NOENT);
  lfsr_file_sync(&lfs, &file) => (zombie) ? 0 : LFS_ERR_NOENT;

We could work around these with parentheses, but with different assert
parsers floating around this issue is likely to crop up again in the
future.

Fortunately this just required separate "sep" vs "term" rules and a bit
more strict parsing.
2024-05-22 18:50:54 -05:00
..
2023-09-15 18:42:48 -05:00
2024-05-18 13:00:15 -05:00
2024-05-18 13:00:15 -05:00
2023-11-06 20:31:21 -06:00
2020-11-22 15:05:22 -06:00