/* * Copyright (c) 2012 Sam Harwell, Tunnel Vision Laboratories LLC * All rights reserved. * * The source code of this document is proprietary work, and is not licensed for * distribution. For information about licensing, contact Sam Harwell at: * sam@tunnelvisionlabs.com */ package org.tvl.goworks.editor.go.codemodel; /** * * @author Sam Harwell */ public enum IntrinsicKind { BOOL, BYTE, COMPLEX64, COMPLEX128, ERROR, FLOAT32, FLOAT64, INT, INT8, INT16, INT32, INT64, RUNE, STRING, UINT, UINT8, UINT16, UINT32, UINT64, UINTPTR, UNKNOWN, UNDEFINED, }