Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fal (0.01 sec)

  1. src/encoding/json/scanner.go

    func stateFa(s *scanner, c byte) int {
    	if c == 'l' {
    		s.step = stateFal
    		return scanContinue
    	}
    	return s.error(c, "in literal false (expecting 'l')")
    }
    
    // stateFal is the state after reading `fal`.
    func stateFal(s *scanner, c byte) int {
    	if c == 's' {
    		s.step = stateFals
    		return scanContinue
    	}
    	return s.error(c, "in literal false (expecting 's')")
    }
    
    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