Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _EOF (0.06 sec)

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

    type tokenKind int
    
    const (
    	_EOF tokenKind = -(iota + 1)
    	_EOLCOMMENT
    	_IDENT
    	_STRING
    	_COMMENT
    
    	// newlines and punctuation tokens are allowed as ASCII codes.
    )
    
    func (k tokenKind) isComment() bool {
    	return k == _COMMENT || k == _EOLCOMMENT
    }
    
    // isEOL returns whether a token terminates a line.
    func (k tokenKind) isEOL() bool {
    	return k == _EOF || k == _EOLCOMMENT || k == '\n'
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/printer.go

    		linebreaks: form == 0,
    	}
    
    	defer func() {
    		n = p.written
    		if e := recover(); e != nil {
    			err = e.(writeError).err // re-panics if it's not a writeError
    		}
    	}()
    
    	p.print(x)
    	p.flush(_EOF)
    
    	return
    }
    
    // String is a convenience function that prints n in ShortForm
    // and returns the printed string.
    func String(n Node) string {
    	var buf strings.Builder
    	_, err := Fprint(&buf, n, ShortForm)
    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