Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for implPath (0.46 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		rst.checkChar('E')
    	case 'B':
    		rst.backref(func() { rst.path(needsSeparator) })
    	default:
    		rst.fail("unrecognized letter in path")
    	}
    }
    
    // implPath parses:
    //
    //	<impl-path> = [<disambiguator>] <path>
    func (rst *rustState) implPath() {
    	// This path is not part of the demangled string.
    	hold := rst.skip
    	rst.skip = true
    	defer func() {
    		rst.skip = hold
    	}()
    
    	rst.disambiguator()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		for _, decl := range node.Decls {
    			u.node(decl)
    		}
    	case *ast.GenDecl:
    		for _, spec := range node.Specs {
    			u.node(spec)
    		}
    	case *ast.ImportSpec:
    		impPath, _ := strconv.Unquote(node.Path.Value)
    		name := path.Base(impPath)
    		u.scope.objects[name] = &object{
    			name: name,
    			pos:  node.Pos(),
    		}
    	case *ast.FuncDecl:
    		u.node(node.Type)
    		if node.Body != nil {
    			u.node(node.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top