Don't import ourselves
This commit is contained in:
@@ -96,7 +96,7 @@ class LRUCache extends EventTarget {
|
||||
|
||||
|
||||
/**
|
||||
* @param {function(this: S, T, string, import("./LRUCache.js").default): ?} f The function
|
||||
* @param {function(this: S, T, string, LRUCache): ?} f The function
|
||||
* to call for every entry from the oldest to the newer. This function takes
|
||||
* 3 arguments (the entry value, the entry key and the LRUCache object).
|
||||
* The return value is ignored.
|
||||
|
||||
@@ -227,7 +227,7 @@ class LinkedList {
|
||||
|
||||
/**
|
||||
* Concatenates two lists.
|
||||
* @param {import("./LinkedList.js").default} list List to merge into the current list.
|
||||
* @param {LinkedList} list List to merge into the current list.
|
||||
*/
|
||||
concat(list) {
|
||||
if (list.head_) {
|
||||
|
||||
@@ -228,7 +228,7 @@ class RBush {
|
||||
|
||||
|
||||
/**
|
||||
* @param {import("./RBush.js").default} rbush R-Tree.
|
||||
* @param {RBush} rbush R-Tree.
|
||||
*/
|
||||
concat(rbush) {
|
||||
this.rbush_.load(rbush.rbush_.all());
|
||||
|
||||
Reference in New Issue
Block a user