dope2/primitives/symbols.js

5 lines
No EOL
196 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');