Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for markRemoved (0.16 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    func (f *WorkFile) DropGoStmt() {
    	if f.Go != nil {
    		f.Go.Syntax.markRemoved()
    		f.Go = nil
    	}
    }
    
    // DropToolchainStmt deletes the toolchain statement from the file.
    func (f *WorkFile) DropToolchainStmt() {
    	if f.Toolchain != nil {
    		f.Toolchain.Syntax.markRemoved()
    		f.Toolchain = nil
    	}
    }
    
    // AddGodebug sets the first godebug line for key to value,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    }
    
    // A Require is a single require statement.
    type Require struct {
    	Mod      module.Version
    	Indirect bool // has "// indirect" comment
    	Syntax   *Line
    }
    
    func (r *Require) markRemoved() {
    	r.Syntax.markRemoved()
    	*r = Require{}
    }
    
    func (r *Require) setVersion(v string) {
    	r.Mod.Version = v
    
    	if line := r.Syntax; len(line.Token) > 0 {
    		if line.InBlock {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	}
    	line.Token = tokens
    }
    
    // markRemoved modifies line so that it (and its end-of-line comment, if any)
    // will be dropped by (*FileSyntax).Cleanup.
    func (line *Line) markRemoved() {
    	line.Token = nil
    	line.Comments.Suffix = nil
    }
    
    // Cleanup cleans up the file syntax x after any edit operations.
    // To avoid quadratic behavior, (*Line).markRemoved marks the line as dead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top