Searched defs:CompLitExpr (Results 1 – 4 of 4) sorted by relevance
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/walk/ |
H A D | complit.go | 196 func fixedlit(ctxt initContext, kind initKind, n *ir.CompLitExpr, var_ ir.Node, init *ir.Nodes) { 275 func isSmallSliceLit(n *ir.CompLitExpr) bool { 283 func slicelit(ctxt initContext, n *ir.CompLitExpr, var_ ir.Node, init *ir.Nodes) { 418 func maplit(n *ir.CompLitExpr, m ir.Node, init *ir.Nodes) {
|
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/ir/ |
H A D | expr.go | 199 type CompLitExpr struct { struct 200 miniExpr 201 origNode 202 Ntype Ntype 203 List Nodes // initialized values 204 Prealloc *Name 205 Len int64 // backing array length for OSLICELIT 217 func (n *CompLitExpr) Implicit() bool { return n.flags&miniExprImplicit != 0 } 218 func (n *CompLitExpr) SetImplicit(b bool) { n.flags.set(miniExprImplicit, b) } 220 func (n *CompLitExpr) SetOp(op Op) {
|
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/typecheck/ |
H A D | expr.go | 202 func tcCompLit(n *ir.CompLitExpr) (res ir.Node) {
|
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/noder/ |
H A D | transform.go | 927 func transformCompLit(n *ir.CompLitExpr) (res ir.Node) {
|