本文整理匯總了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
}