Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for option (0.26 sec)

  1. doc/go_spec.html

    Factor      = production_name | token [ "…" token ] | Group | Option | Repetition .
    Group       = "(" Expression ")" .
    Option      = "[" Expression "]" .
    Repetition  = "{" Expression "}" .
    </pre>
    
    <p>
    Productions are expressions constructed from terms and the following
    operators, in increasing precedence:
    </p>
    <pre class="grammar">
    |   alternation
    ()  grouping
    []  option (0 or 1 times)
    {}  repetition (0 to n times)
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	openDefers []*openDeferInfo
    	// For open-coded defers, this is the beginning and end blocks of the last
    	// defer exit code that we have generated so far. We use these to share
    	// code between exits if the shareDeferExits option (disabled by default)
    	// is on.
    	lastDeferExit       *ssa.Block // Entry block of last defer exit code we generated
    	lastDeferFinalBlock *ssa.Block // Final block of last defer exit code we generated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top