dope2/primitives/symbols.js

7 lines
No EOL
268 B
JavaScript

// to break up dependency cycles, symbols of primitive types have their own JS module
export const Bool = Symbol('Bool');
export const Int = Symbol('Int');
export const Double = Symbol('Double');
export const Byte = Symbol('Byte');
export const Char = Symbol('Char');