@code-o-mat/globals
Version:
Abstract Package to support CodeOMat series of apps.
33 lines (19 loc) • 941 B
JavaScript
// Abstracts Type for O_MATS
export const O_MAT = Symbol('O_MAT');
export const META = Symbol('META');
// Part of the Kernel of the ClassOMat system. Used in part to
// build other OMat factories and also in the end result application.
export const METHOD_O_MAT = Symbol('METHOD_O_MAT');
// Accessor O Mat builds a series of accessing methods for classes and objects.
export const ACCESSOR_O_MAT = Symbol('ACCESSOR_O_MAT');
// ConnectorOMat connects different OMats.
// It also connects
export const CONNECTOR_O_MAT = Symbol('CONNECTOR_O_MAT');
// ClassOMat is a class factory that accesse
export const CLASS_O_MAT = Symbol('CLASS_O_MAT');
export const CODE_O_MAT = Symbol('CODE_O_MAT');
export const ABSTRACT = Symbol('ABSTRACT');
export const RESULT = Symbol('RESULT');
// Caches
export const CACHE = Symbol('CACHE');
export const HISTORY_CACHE = Symbol('HISTORY_CACHE');