refactor: convert constructor parameter properties for erasableSyntaxOnly compatibility

Signed-off-by: Paul Schultz <pschultz@pobox.com>
This commit is contained in:
Paul Schultz
2025-09-16 12:29:49 -05:00
parent b3a437e15d
commit 05f60e1e0a
167 changed files with 1826 additions and 679 deletions
@@ -30,11 +30,15 @@ class Node<T> {
);
}
private constructor(
readonly value: T,
readonly consumes: Set<string>,
readonly provides: Set<string>,
) {}
readonly value: T;
readonly consumes: Set<string>;
readonly provides: Set<string>;
private constructor(value: T, consumes: Set<string>, provides: Set<string>) {
this.value = value;
this.consumes = consumes;
this.provides = provides;
}
}
/** @internal */