Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for popParseState (0.14 sec)

  1. src/encoding/json/scanner.go

    	if len(s.parseState) <= maxNestingDepth {
    		return successState
    	}
    	return s.error(c, "exceeded max depth")
    }
    
    // popParseState pops a parse state (already obtained) off the stack
    // and updates s.step accordingly.
    func (s *scanner) popParseState() {
    	n := len(s.parseState) - 1
    	s.parseState = s.parseState[0:n]
    	if n == 0 {
    		s.step = stateEndTop
    		s.endTop = true
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top