Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printDecl (0.22 sec)

  1. src/cmd/compile/internal/syntax/printer.go

    			if i0 < i {
    				p.printDecl(list[i0:i])
    				p.print(_Semi, newline)
    				// print empty line between different declaration groups,
    				// different kinds of declarations, or between functions
    				if g != group || s != tok || s == _Func {
    					p.print(newline)
    				}
    				i0 = i
    			}
    			tok, group = s, g
    		}
    	}
    	p.printDecl(list[i0:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top