removing unused vars

This commit is contained in:
Yotam Mann 2019-12-06 17:29:06 -05:00
parent 2295ce674e
commit d4f47b7cd8
2 changed files with 0 additions and 8 deletions

View file

@ -6,7 +6,6 @@ import { isArray, isObject, isString } from "../../core/util/TypeCheck";
import { connectSignal, Signal } from "../../signal/Signal";
import { OfflineContext } from "../../core/context/OfflineContext";
import { assertRange } from "../../core/util/Debug";
import { EQ } from "../../core/util/Math";
type BasicEnvelopeCurve = "linear" | "exponential";
type InternalEnvelopeCurve = BasicEnvelopeCurve | number[];

View file

@ -43,13 +43,6 @@ export class Reverb extends Effect<ReverbOptions> {
*/
private _preDelay: Seconds;
/**
* Since multiple calls of `generate` can be invoked at the same time
* before the previous one has resolved, this makes sure that only the
* latest call's buffer is used.
*/
private _generateId = 0;
/**
* Resolves when the reverb buffer is generated. Whenever either [[decay]]
* or [[preDelay]] are set, you have to wait until [[ready]] resolves