missing get method

This commit is contained in:
Leo Balter 2018-08-20 13:37:34 -04:00
parent 96809308fd
commit 2ec2a00791
1 changed files with 6 additions and 6 deletions

View File

@ -78,22 +78,22 @@ static async * #ZW_\u200D_J(value) {
yield * await value;
}
//- privateinspectionfunctions
static async * $() {
static get $() {
return this.#$;
}
static async * _() {
static get _() {
return this.#_;
}
static async * \u{6F}() {
static get \u{6F}() {
return this.#\u{6F};
}
static async * \u2118() {
static get \u2118() {
return this.#\u2118;
}
static async * ZW_\u200C_NJ() {
static get ZW_\u200C_NJ() {
return this.#ZW_\u200C_NJ;
}
static async * ZW_\u200D_J() {
static get ZW_\u200D_J() {
return this.#ZW_\u200D_J;
}