2017-12-23 12:02:03 +00:00
|
|
|
// Copyright 2017, 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.md file.
|
|
|
|
|
2018-08-01 17:43:44 +00:00
|
|
|
// +build purego appengine js
|
2017-12-23 12:02:03 +00:00
|
|
|
|
|
|
|
package cmp
|
|
|
|
|
|
|
|
import "reflect"
|
|
|
|
|
|
|
|
const supportAllowUnexported = false
|
|
|
|
|
|
|
|
func unsafeRetrieveField(reflect.Value, reflect.StructField) reflect.Value {
|
|
|
|
panic("unsafeRetrieveField is not implemented")
|
|
|
|
}
|