public get path()

in src/construct.ts [79:87]


  public get path(): string {
    const components = [];
    for (const scope of this.scopes) {
      if (scope.node.id) {
        components.push(scope.node.id);
      }
    }
    return components.join(Node.PATH_SEP);
  }