bypasssafe.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright (c) 2015 Dave Collins <[email protected]>
  2. //
  3. // Permission to use, copy, modify, and distribute this software for any
  4. // purpose with or without fee is hereby granted, provided that the above
  5. // copyright notice and this permission notice appear in all copies.
  6. //
  7. // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. // NOTE: Due to the following build constraints, this file will only be compiled
  15. // when either the code is running on Google App Engine or "-tags disableunsafe"
  16. // is added to the go build command line.
  17. // +build appengine disableunsafe
  18. package spew
  19. import "reflect"
  20. const (
  21. // UnsafeDisabled is a build-time constant which specifies whether or
  22. // not access to the unsafe package is available.
  23. UnsafeDisabled = true
  24. )
  25. // unsafeReflectValue typically converts the passed reflect.Value into a one
  26. // that bypasses the typical safety restrictions preventing access to
  27. // unaddressable and unexported data. However, doing this relies on access to
  28. // the unsafe package. This is a stub version which simply returns the passed
  29. // reflect.Value when the unsafe package is not available.
  30. func unsafeReflectValue(v reflect.Value) reflect.Value {
  31. return v
  32. }