本文整理汇总了Golang中github.com/katydid/katydid/asm/ast.Terminal.String方法的典型用法代码示例。如果您正苦于以下问题:Golang Terminal.String方法的具体用法?Golang Terminal.String怎么用?Golang Terminal.String使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/katydid/katydid/asm/ast.Terminal
的用法示例。
在下文中一共展示了Terminal.String方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: uint32ToGo
func uint32ToGo(term *ast.Terminal) (uint32, error) {
if term.Uint32Value == nil {
return 0, &ErrWrongType{"uint32", term.String()}
}
return term.GetUint32Value(), nil
}
示例2: doubleToGo
func doubleToGo(term *ast.Terminal) (float64, error) {
if term.DoubleValue == nil {
return 0, &ErrWrongType{"double", term.String()}
}
return term.GetDoubleValue(), nil
}
示例3: bytesToGo
func bytesToGo(term *ast.Terminal) ([]byte, error) {
if term.BytesValue == nil {
return nil, &ErrWrongType{"[]byte", term.String()}
}
return term.GetBytesValue(), nil
}
示例4: stringToGo
func stringToGo(term *ast.Terminal) (string, error) {
if term.StringValue == nil {
return "", &ErrWrongType{"string", term.String()}
}
return term.GetStringValue(), nil
}
示例5: boolToGo
func boolToGo(term *ast.Terminal) (bool, error) {
if term.BoolValue == nil {
return false, &ErrWrongType{"bool", term.String()}
}
return term.GetBoolValue(), nil
}
示例6: int64ToGo
func int64ToGo(term *ast.Terminal) (int64, error) {
if term.Int64Value == nil {
return 0, &ErrWrongType{"int64", term.String()}
}
return term.GetInt64Value(), nil
}
示例7: floatToGo
func floatToGo(term *ast.Terminal) (float32, error) {
if term.FloatValue == nil {
return 0, &ErrWrongType{"float", term.String()}
}
return term.GetFloatValue(), nil
}