diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-01-20 16:33:17 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-01-30 07:59:39 -0400 |
commit | e57e540bd57ea9b25cf785327054f344347c40b1 (patch) | |
tree | cc06e3c24d8eaf23bde98c6d0d2dedd8290b8e14 /src | |
parent | 296a4961a951e44ea53509391ad225d1491197f9 (diff) |
data: global Thing symbol cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/data/things/thing.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data/things/thing.js b/src/data/things/thing.js index 42971c04..e1f488ee 100644 --- a/src/data/things/thing.js +++ b/src/data/things/thing.js @@ -9,10 +9,10 @@ import CacheableObject from './cacheable-object.js'; export default class Thing extends CacheableObject { static referenceType = Symbol.for('Thing.referenceType'); - static friendlyName = Symbol.for(`Thing.friendlyName`); + static friendlyName = Symbol.for('Thing.friendlyName'); - static getPropertyDescriptors = Symbol('Thing.getPropertyDescriptors'); - static getSerializeDescriptors = Symbol('Thing.getSerializeDescriptors'); + static getPropertyDescriptors = Symbol.for('Thing.getPropertyDescriptors'); + static getSerializeDescriptors = Symbol.for('Thing.getSerializeDescriptors'); static yamlDocumentSpec = Symbol.for('Thing.yamlDocumentSpec'); |