chore(generators): Comment tweak for PR #7153 (#7156)

This commit is contained in:
Christopher Allen
2023-06-13 22:14:11 +01:00
committed by GitHub
parent 306eb80216
commit 22a7a7bbab

View File

@@ -104,8 +104,12 @@ export class JavascriptGenerator extends CodeGenerator {
this.isInitialized = false;
// Copy Order values onto instance for backwards compatibility
// while ensuring they are not part of the publically- -advertised
// while ensuring they are not part of the publically-advertised
// API.
//
// TODO(#7085): deprecate these in due course. (Could initially
// replace data properties with get accessors that call
// deprecate.warn().)
for (const key in Order) {
this['ORDER_' + key] = Order[key];
}