blob: 0d9a3e19e3b3e03c439594595586456a2c58c765 [file] [log] [blame]
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This file contains declarations needed for compatibility with resolver.go
// copied from GOROOT.
package parsego
import "go/token"
// assert panics with the given msg if cond is not true.
func assert(cond bool, msg string) {
if !cond {
panic(msg)
}
}
// A bailout panic is raised to indicate early termination. pos and msg are
// only populated when bailing out of object resolution.
type bailout struct {
pos token.Pos
msg string
}