/* IMPORT */ import Abstract from './abstract'; import type {AbstractState} from '../types'; /* MAIN */ // This is just a node in the propotype chain useful for brand-checking primitive nodes class Primitive> extends Abstract {} /* EXPORT */ export default Primitive;