golang.org/x/tools/gopls@v0.15.3/internal/cache/debug.go (about)

     1  // Copyright 2022 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  package cache
     6  
     7  // assert panics with the given msg if cond is not true.
     8  func assert(cond bool, msg string) {
     9  	if !cond {
    10  		panic(msg)
    11  	}
    12  }