...

Source file src/github.com/golang/glog/glog_vmodule_test.go

Documentation: github.com/golang/glog

     1  package glog
     2  
     3  // runInAnotherModule is a simple wrapper that, being defined in another file,
     4  // provides a different vmodule stack frame on the stack for use with
     5  // glog.*Depth testing.
     6  //
     7  //go:noinline
     8  func runInAnotherModule(f func() bool) bool {
     9  	return f()
    10  }
    11  

View as plain text