runtime.Frame.Line (field)

18 uses

	runtime (current package)
		extern.go#L309: 	return frame.PC, frame.File, frame.Line, frame.PC != 0
		symtab.go#L55: 	Line int
		symtab.go#L198: 		frame.File, frame.Line = file, int(line)
		symtab.go#L314: 			Line:     int(arg.lineno),
		tracestack.go#L236: 	frame.line = uint64(f.Line)

	runtime/pprof
		pprof.go#L562: 			fmt.Fprintf(w, "#\t%#x\t%s+%#x\t%s:%d\n", frame.PC, name, frame.PC-frame.Entry, frame.File, frame.Line)
		proto.go#L223: 	if frame.PC == 0 || frame.Function == "" || frame.File == "" || frame.Line == 0 {
		proto.go#L630: 		b.pbLine(tagLocation_Line, funcID, int64(frame.Line))

	go.uber.org/zap
		logger.go#L379: 			Line:     frame.Line,
		stacktrace.go#L175: 	sf.b.AppendInt(int64(frame.Line))

	golang.org/x/tools/internal/pkgbits
		sync.go#L38: 		visit(frame.File, frame.Line, frame.Function, frame.PC-frame.Entry)

	internal/bisect
		bisect.go#L503: 		buf = appendFileLine(buf, f.File, f.Line)

	log
		log.go#L231: 			line = f.Line

	net/http
		server.go#L1196: 		w.conn.server.logf("http: response.WriteHeader on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
		server.go#L1201: 		w.conn.server.logf("http: superfluous response.WriteHeader call from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
		server.go#L1677: 			w.conn.server.logf("http: response.Write on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
		server.go#L3903: 			logf(tw.req, "http: superfluous response.WriteHeader call from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)

	testing
		testing.go#L806: 	line := frame.Line