UNPKG

1.18 kBJavaScriptView Raw
1"use strict";
2/**
3 * @license
4 * Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
5 * This code may only be used under the BSD style license found at
6 * http://polymer.github.io/LICENSE.txt
7 * The complete set of authors may be found at
8 * http://polymer.github.io/AUTHORS.txt
9 * The complete set of contributors may be found at
10 * http://polymer.github.io/CONTRIBUTORS.txt
11 * Code distributed by Google as part of the polymer project is also
12 * subject to an additional IP rights grant found at
13 * http://polymer.github.io/PATENTS.txt
14 */
15Object.defineProperty(exports, "__esModule", { value: true });
16const feature_1 = require("./feature");
17/**
18 * The `DocumentBackreference` is added to the set of features
19 * for an inline/imported document to provide a link to its containing/importer
20 * document.
21 */
22class DocumentBackreference extends feature_1.ScannedFeature {
23 constructor(document) {
24 super();
25 this.document = document;
26 this.kinds = new Set(['document-backreference']);
27 this.identifiers = new Set();
28 }
29}
30exports.DocumentBackreference = DocumentBackreference;
31//# sourceMappingURL=document-backreference.js.map
\No newline at end of file