Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for endClass (0.16 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    	T := pkg.Scope().Lookup("T").Type().(*Named)
    	if n := T.TypeParams().Len(); n != 1 {
    		t.Fatalf("expected 1 type parameter; found %d", n)
    	}
    
    	// instantiation should succeed (no endless recursion)
    	// even with a nil *Checker
    	res, err := Instantiate(nil, T, []Type{Typ[Int]}, false)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// instantiated type should point to itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    	T := pkg.Scope().Lookup("T").Type().(*Named)
    	if n := T.TypeParams().Len(); n != 1 {
    		t.Fatalf("expected 1 type parameter; found %d", n)
    	}
    
    	// instantiation should succeed (no endless recursion)
    	// even with a nil *Checker
    	res, err := Instantiate(nil, T, []Type{Typ[Int]}, false)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// instantiated type should point to itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// name.  This is used by types to implement the inside-out
    	// C++ declaration syntax.
    	inner []AST
    
    	// The printing field is a list of items we are currently
    	// printing.  This avoids endless recursion if a substitution
    	// reference creates a cycle in the graph.
    	printing []AST
    }
    
    // writeByte adds a byte to the string being printed.
    func (ps *printState) writeByte(b byte) {
    	ps.last = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-65005`](https://youtrack.jetbrains.com/issue/KT-65005) K2: Investigate testCommonSuperTypeContravariant performance
    - [`KT-65996`](https://youtrack.jetbrains.com/issue/KT-65996) Compiler enters endless loop
    - [`KT-66341`](https://youtrack.jetbrains.com/issue/KT-66341) K2: Don't build IdSignatures in FIR2IR with IR f/o builder
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top