Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rhs (0.02 sec)

  1. schema/naming.go

    }
    
    var (
    	// https://github.com/golang/lint/blob/master/lint.go#L770
    	commonInitialisms         = []string{"API", "ASCII", "CPU", "CSS", "DNS", "EOF", "GUID", "HTML", "HTTP", "HTTPS", "ID", "IP", "JSON", "LHS", "QPS", "RAM", "RHS", "RPC", "SLA", "SMTP", "SSH", "TLS", "TTL", "UID", "UI", "UUID", "URI", "URL", "UTF8", "VM", "XML", "XSRF", "XSS"}
    	commonInitialismsReplacer *strings.Replacer
    )
    
    func init() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/positions.go

    			m = n.X
    		case *SendStmt:
    			m = n.Value
    		case *DeclStmt:
    			if l := lastDecl(n.DeclList); l != nil {
    				m = l
    				continue
    			}
    			return n.Pos()
    		case *AssignStmt:
    			m = n.Rhs
    			if m == nil {
    				p := EndPos(n.Lhs)
    				return MakePos(p.Base(), p.Line(), p.Col()+2)
    			}
    		case *BranchStmt:
    			if n.Label != nil {
    				m = n.Label
    				continue
    			}
    			return n.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top