currentPath property

List<String> get currentPath

Current declaration-time group path.

Implementation

List<String> get currentPath => List<String>.unmodifiable(
      _declarationStack.map((group) => group.name),
    );