
* service/dap: Support stackTrace request * Minor tweaks * Address review comments * Fix grammar * Address review comments * Address review comments * Update comments Co-authored-by: Polina Sokolova <polinasok@users.noreply.github.com>
11 lines
152 B
Go
11 lines
152 B
Go
package dap
|
|
|
|
// min returns the lowest-valued integer
|
|
// between the two passed into it.
|
|
func min(i, j int) int {
|
|
if i < j {
|
|
return i
|
|
}
|
|
return j
|
|
}
|