github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/go/types/exprstring.go (about) 1 // Copyright 2013 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // このファイルは式の出力を実装しています。 6 7 package types 8 9 import ( 10 "github.com/shogo82148/std/bytes" 11 "github.com/shogo82148/std/go/ast" 12 ) 13 14 // ExprStringはxの(短縮された可能性のある)文字列表現を返します。 15 // 短縮された表現はユーザーインターフェースに適していますが、Goの構文に必ずしも従っているわけではありません。 16 func ExprString(x ast.Expr) string 17 18 // WriteExprは、xの(短縮されたかもしれない)文字列表現をbufに書き込みます。 19 // 短縮表示はユーザーインターフェースに適していますが、必ずしもGoの構文に従うとは限りません。 20 func WriteExpr(buf *bytes.Buffer, x ast.Expr)