Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WriteExpr (0.21 sec)

  1. src/go/types/exprstring.go

    			WriteExpr(buf, x.Low)
    		}
    		buf.WriteByte(':')
    		if x.High != nil {
    			WriteExpr(buf, x.High)
    		}
    		if x.Slice3 {
    			buf.WriteByte(':')
    			if x.Max != nil {
    				WriteExpr(buf, x.Max)
    			}
    		}
    		buf.WriteByte(']')
    
    	case *ast.TypeAssertExpr:
    		WriteExpr(buf, x.X)
    		buf.WriteString(".(")
    		WriteExpr(buf, x.Type)
    		buf.WriteByte(')')
    
    	case *ast.CallExpr:
    		WriteExpr(buf, x.Fun)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/go/types/api.go

    func (init *Initializer) String() string {
    	var buf bytes.Buffer
    	for i, lhs := range init.Lhs {
    		if i > 0 {
    			buf.WriteString(", ")
    		}
    		buf.WriteString(lhs.Name())
    	}
    	buf.WriteString(" = ")
    	WriteExpr(&buf, init.Rhs)
    	return buf.String()
    }
    
    // Check type-checks a package and returns the resulting package object and
    // the first error if any. Additionally, if info != nil, Check populates each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg go/types, func RelativeTo(*Package) Qualifier
    pkg go/types, func SelectionString(*Selection, Qualifier) string
    pkg go/types, func TypeString(Type, Qualifier) string
    pkg go/types, func WriteExpr(*bytes.Buffer, ast.Expr)
    pkg go/types, func WriteSignature(*bytes.Buffer, *Signature, Qualifier)
    pkg go/types, func WriteType(*bytes.Buffer, Type, Qualifier)
    pkg go/types, method (*Array) Elem() Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"UntypedComplex", Const, 5},
    		{"UntypedFloat", Const, 5},
    		{"UntypedInt", Const, 5},
    		{"UntypedNil", Const, 5},
    		{"UntypedRune", Const, 5},
    		{"UntypedString", Const, 5},
    		{"Var", Type, 5},
    		{"WriteExpr", Func, 5},
    		{"WriteSignature", Func, 5},
    		{"WriteType", Func, 5},
    	},
    	"go/version": {
    		{"Compare", Func, 22},
    		{"IsValid", Func, 22},
    		{"Lang", Func, 22},
    	},
    	"hash": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top