Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ABase (0.02 sec)

  1. src/cmd/internal/obj/stringer.go

    	defer out.Flush()
    	var on = false
    	s := bufio.NewScanner(in)
    	first := true
    	for s.Scan() {
    		line := s.Text()
    		if !on {
    			// First relevant line contains "= obj.ABase".
    			// If we find it, delete the = so we don't stop immediately.
    			const prefix = "= obj.ABase"
    			index := strings.Index(line, prefix)
    			if index < 0 {
    				continue
    			}
    			// It's on. Start with the header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top