Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stripParensAlways (1.86 sec)

  1. src/go/printer/nodes.go

    			// in all other cases, keep inspecting
    			return true
    		})
    		if strip {
    			return stripParens(px.X)
    		}
    	}
    	return x
    }
    
    func stripParensAlways(x ast.Expr) ast.Expr {
    	if x, ok := x.(*ast.ParenExpr); ok {
    		return stripParensAlways(x.X)
    	}
    	return x
    }
    
    func (p *printer) controlClause(isForStmt bool, init ast.Stmt, expr ast.Expr, post ast.Stmt) {
    	p.print(blank)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top