runtime.Frame.Line (field)

16 uses

	runtime (current package)
		extern.go#L212: 	return frame.PC, frame.File, frame.Line, frame.PC != 0
		symtab.go#L50: 	Line int
		symtab.go#L156: 		frame.File, frame.Line = file, int(line)
		symtab.go#L238: 			Line:     int(arg.lineno),
		trace.go#L921: 	frame.line = uint64(f.Line)

	runtime/pprof
		pprof.go#L506: 			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#L222: 	if frame.PC == 0 || frame.Function == "" || frame.File == "" || frame.Line == 0 {
		proto.go#L551: 		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
		frames_go17.go#L23: 		visit(frame.File, frame.Line, frame.Function, frame.PC-frame.Entry)

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

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