Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for recordUntyped (0.32 sec)

  1. src/go/types/eval.go

    	defer check.handleBailout(&err)
    
    	// evaluate node
    	var x operand
    	check.rawExpr(nil, &x, expr, nil, true) // allow generic expressions
    	check.processDelayed(0)                 // incl. all functions
    	check.recordUntyped()
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/go/types/check.go

    	check.cleanup()
    
    	print("== initOrder ==")
    	check.initOrder()
    
    	if !check.conf.DisableUnusedImportCheck {
    		print("== unusedImports ==")
    		check.unusedImports()
    	}
    
    	print("== recordUntyped ==")
    	check.recordUntyped()
    
    	if check.firstErr == nil {
    		// TODO(mdempsky): Ensure monomorph is safe when errors exist.
    		check.monomorph()
    	}
    
    	check.pkg.goVersion = check.conf.GoVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check.go

    	check.cleanup()
    
    	print("== initOrder ==")
    	check.initOrder()
    
    	if !check.conf.DisableUnusedImportCheck {
    		print("== unusedImports ==")
    		check.unusedImports()
    	}
    
    	print("== recordUntyped ==")
    	check.recordUntyped()
    
    	if check.firstErr == nil {
    		// TODO(mdempsky): Ensure monomorph is safe when errors exist.
    		check.monomorph()
    	}
    
    	check.pkg.goVersion = check.conf.GoVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top