From 27266049f723aa28541643fce676fc0fa2e2f682 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Mon, 25 Sep 2023 15:58:05 -0500 Subject: [PATCH] =?UTF-8?q?feat(common):=20ldml=20import=20infrastructure?= =?UTF-8?q?=20=F0=9F=99=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For: #9403 - Just use a local Symbol() instead of a named one, there's no reason for a namespace here. --- common/web/types/src/ldml-keyboard/ldml-keyboard-xml.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/web/types/src/ldml-keyboard/ldml-keyboard-xml.ts b/common/web/types/src/ldml-keyboard/ldml-keyboard-xml.ts index 80bbb2e4d47..5f954c1605d 100644 --- a/common/web/types/src/ldml-keyboard/ldml-keyboard-xml.ts +++ b/common/web/types/src/ldml-keyboard/ldml-keyboard-xml.ts @@ -213,9 +213,9 @@ export interface LKScanCodes { */ export class ImportStatus { /** item came in via implied (spec based) import, such as keys-Latn-implied.xml */ - static impliedImport = Symbol.for('@keymanapp:implied_import'); + static impliedImport = Symbol('LDML implied import'); /** item came in via import */ - static import = Symbol.for('@keymanapp:import'); + static import = Symbol('LDML import'); /** @returns true if the object was loaded through an implied import */ static isImpliedImport(o : any) : boolean {