mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 18:57:18 +08:00 
			
		
		
		
	 c412dcdc4f
			
		
	
	c412dcdc4f
	
	
	
		
			
			Go 1.19 also formats doc comments according to the new godoc syntax. Some of our comments, especially unexported symbols did not conform to the godoc syntax and therefore are mangled by 'go fmt'. This PR runs 'go fmt' from go1.19 on everything and manually fixes the problems. See also: https://github.com/golang/proposal/blob/master/design/51082-godocfmt.md
		
			
				
	
	
		
			10 lines
		
	
	
		
			330 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			330 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Package proc is a low-level package that provides methods to manipulate
 | |
| // the process we are debugging.
 | |
| //
 | |
| // proc implements all core functionality including:
 | |
| //
 | |
| //   - creating / attaching to a process
 | |
| //   - process manipulation (step, next, continue, halt)
 | |
| //   - methods to explore the memory of the process
 | |
| package proc
 |