mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
70 lines
951 B
Go
70 lines
951 B
Go
package ast
|
|
|
|
import "fmt"
|
|
|
|
type Kind int
|
|
|
|
const (
|
|
// meta
|
|
Invalid Kind = iota
|
|
Comment
|
|
Key
|
|
|
|
// top level structures
|
|
Table
|
|
ArrayTable
|
|
KeyValue
|
|
|
|
// containers values
|
|
Array
|
|
InlineTable
|
|
|
|
// values
|
|
String
|
|
Bool
|
|
Float
|
|
Integer
|
|
LocalDate
|
|
LocalTime
|
|
LocalDateTime
|
|
DateTime
|
|
)
|
|
|
|
func (k Kind) String() string {
|
|
switch k {
|
|
case Invalid:
|
|
return "Invalid"
|
|
case Comment:
|
|
return "Comment"
|
|
case Key:
|
|
return "Key"
|
|
case Table:
|
|
return "Table"
|
|
case ArrayTable:
|
|
return "ArrayTable"
|
|
case KeyValue:
|
|
return "KeyValue"
|
|
case Array:
|
|
return "Array"
|
|
case InlineTable:
|
|
return "InlineTable"
|
|
case String:
|
|
return "String"
|
|
case Bool:
|
|
return "Bool"
|
|
case Float:
|
|
return "Float"
|
|
case Integer:
|
|
return "Integer"
|
|
case LocalDate:
|
|
return "LocalDate"
|
|
case LocalTime:
|
|
return "LocalTime"
|
|
case LocalDateTime:
|
|
return "LocalDateTime"
|
|
case DateTime:
|
|
return "DateTime"
|
|
}
|
|
panic(fmt.Errorf("Kind.String() not implemented for '%d'", k))
|
|
}
|