Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dragon (0.19 sec)

  1. src/cmd/cgo/gcc.go

    	if visited[dtype] {
    		return
    	}
    	visited[dtype] = true
    	switch dt := dtype.(type) {
    	case *dwarf.TypedefType:
    		if strings.HasPrefix(dt.Name, "__builtin") {
    			// Don't look inside builtin types. There be dragons.
    			return
    		}
    		if !p.typedefs[dt.Name] {
    			p.typedefs[dt.Name] = true
    			p.typedefList = append(p.typedefList, typedefInfo{dt.Name, pos})
    			p.recordTypedefs1(dt.Type, pos, visited)
    		}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/lex_test.go

    		result := drain(input)
    		if result != test.output {
    			t.Errorf("%s: got %q expected %q", test.name, result, test.output)
    		}
    	}
    }
    
    // lines joins the arguments together as complete lines.
    func lines(a ...string) string {
    	return strings.Join(a, "\n") + "\n"
    }
    
    // drain returns a single string representing the processed input tokens.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 5.8K bytes
    - Viewed (0)
Back to top