Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for asGoVersion (0.11 sec)

  1. src/go/types/version.go

    	go1_9  = asGoVersion("go1.9")
    	go1_13 = asGoVersion("go1.13")
    	go1_14 = asGoVersion("go1.14")
    	go1_17 = asGoVersion("go1.17")
    	go1_18 = asGoVersion("go1.18")
    	go1_20 = asGoVersion("go1.20")
    	go1_21 = asGoVersion("go1.21")
    	go1_22 = asGoVersion("go1.22")
    	go1_23 = asGoVersion("go1.23")
    
    	// current (deployed) Go version
    	go_current = asGoVersion(fmt.Sprintf("go1.%d", goversion.Version))
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/version.go

    	go1_9  = asGoVersion("go1.9")
    	go1_13 = asGoVersion("go1.13")
    	go1_14 = asGoVersion("go1.14")
    	go1_17 = asGoVersion("go1.17")
    	go1_18 = asGoVersion("go1.18")
    	go1_20 = asGoVersion("go1.20")
    	go1_21 = asGoVersion("go1.21")
    	go1_22 = asGoVersion("go1.22")
    	go1_23 = asGoVersion("go1.23")
    
    	// current (deployed) Go version
    	go_current = asGoVersion(fmt.Sprintf("go1.%d", goversion.Version))
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check.go

    	// mutate *pkg.
    	//
    	// (previously, pkg.goVersion was mutated here: go.dev/issue/61212)
    
    	return &Checker{
    		conf:    conf,
    		ctxt:    conf.Context,
    		pkg:     pkg,
    		Info:    info,
    		version: asGoVersion(conf.GoVersion),
    		objMap:  make(map[Object]*declInfo),
    		impMap:  make(map[importKey]*Package),
    	}
    }
    
    // initFiles initializes the files-specific portion of checker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. src/go/types/check.go

    	conf._EnableAlias = gotypesalias.Value() != "0"
    
    	return &Checker{
    		conf:    conf,
    		ctxt:    conf.Context,
    		fset:    fset,
    		pkg:     pkg,
    		Info:    info,
    		version: asGoVersion(conf.GoVersion),
    		objMap:  make(map[Object]*declInfo),
    		impMap:  make(map[importKey]*Package),
    	}
    }
    
    // initFiles initializes the files-specific portion of checker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top