parents property

List<String> parents
getter/setter pair

List of parent parser IDs that this parser depends on.

This parser will only execute after all its parent parsers have completed. Use ['_root'] for parsers that should execute first (root parsers).

Examples:

  • ['_root'] - executes first, no dependencies
  • ['product'] - executes after the 'product' parser completes
  • ['product', 'category'] - executes after both 'product' and 'category' parsers complete

Implementation

List<String> parents;