dope2/primitives/symbols.js

6 lines
No EOL
232 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');