Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for GoInterface (0.28 sec)

  1. src/go/internal/gccgoimporter/importer_test.go

    	{pkgpath: "nointerface", name: "I", want: "type I int"},
    	{pkgpath: "issue29198", name: "FooServer", gccgoVersion: 7, want: "type FooServer struct{FooServer *FooServer; user string; ctx context.Context}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/parser.go

    		}
    	}
    
    	if p.tok == '\n' {
    		p.next()
    		// collect associated methods
    		for p.tok == scanner.Ident {
    			p.expectKeyword("func")
    			if p.tok == '/' {
    				// Skip a /*nointerface*/ or /*asm ID */ comment.
    				p.expect('/')
    				p.expect('*')
    				if p.expect(scanner.Ident) == "asm" {
    					p.parseUnquotedString()
    				}
    				p.expect('*')
    				p.expect('/')
    			}
    			p.expect('(')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    	Offset int64
    }
    
    const (
    	fieldIsDDD = 1 << iota // field is ... argument
    	fieldNointerface
    )
    
    func (f *Field) IsDDD() bool       { return f.flags&fieldIsDDD != 0 }
    func (f *Field) Nointerface() bool { return f.flags&fieldNointerface != 0 }
    
    func (f *Field) SetIsDDD(b bool)       { f.flags.set(fieldIsDDD, b) }
    func (f *Field) SetNointerface(b bool) { f.flags.set(fieldNointerface, b) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top