runtime.go raw

   1  // Package moxie contains constants used between the Moxie compiler and
   2  // runtime.
   3  package moxie
   4  
   5  const (
   6  	PanicStrategyPrint = iota + 1
   7  	PanicStrategyTrap
   8  )
   9  
  10  type HashmapAlgorithm uint8
  11  
  12  // Constants for hashmap algorithms.
  13  const (
  14  	HashmapAlgorithmBinary HashmapAlgorithm = iota
  15  	HashmapAlgorithmContent
  16  	HashmapAlgorithmInterface
  17  )
  18