Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for oas (0.02 sec)

  1. test/fixedbugs/issue15091.go

    // or (now, with the error caught earlier)
    //    Treating auto as if it were arg, func (*Html).xyzzy, node ...
    // caused by racewalker inserting instrumentation before an OAS where the Ninit
    // of the OAS defines part of its right-hand-side. (I.e., the race instrumentation
    // references a variable before it is defined.)
    func (options *Html) xyzzy(id string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 989 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/stmt.go

    			n := n.(*ir.Name)
    			base.Errorf("%v is not a top level statement", n.Sym())
    		} else {
    			base.Errorf("%v is not a top level statement", n.Op())
    		}
    		ir.Dump("nottop", n)
    		return n
    
    	case ir.OAS,
    		ir.OASOP,
    		ir.OAS2,
    		ir.OAS2DOTTYPE,
    		ir.OAS2RECV,
    		ir.OAS2FUNC,
    		ir.OAS2MAPR,
    		ir.OCLEAR,
    		ir.OCLOSE,
    		ir.OCOPY,
    		ir.OCALLINTER,
    		ir.OCALL,
    		ir.OCALLFUNC,
    		ir.ODELETE,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top