Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseTypeExtended (0.17 sec)

  1. src/go/internal/gccgoimporter/parser.go

    	}
    
    	p.expect('>')
    	return
    }
    
    // parseTypeExtended is identical to parseType, but if the type in
    // question is a saved type, returns the index as well as the type
    // pointer (index returned is zero if we parsed a builtin).
    func (p *parser) parseTypeExtended(pkg *types.Package, n ...any) (t types.Type, n1 int) {
    	p.expect('<')
    	t, n1 = p.parseTypeAfterAngle(pkg, n...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top