Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ElementList (0.42 sec)

  1. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #             ; isSuppressAutoDeploy=[true or false(default)]
    #             ; groupingMap = map:{
    #                 ; [group-name] = map:{
    #                     ; groupComment=[comment]
    #                     ; elementList=list:{[the list of classification element's name]}
    #                 }
    #             }
    #         }
    #         # classification elements for implicit classification
    #         ; map:{
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    		}
    		p.resolve(x) // not a map key
    	}
    
    	return x
    }
    
    func (p *parser) parseElementList() (list []ast.Expr) {
    	if p.trace {
    		defer un(trace(p, "ElementList"))
    	}
    
    	for p.tok != token.RBRACE && p.tok != token.EOF {
    		list = append(list, p.parseElement(true))
    		if p.tok != token.COMMA {
    			break
    		}
    		p.next()
    	}
    
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	if p.tok == _Lbrace {
    		// '{' start_complit braced_keyval_list '}'
    		return p.complitexpr()
    	}
    
    	return p.expr()
    }
    
    // LiteralValue = "{" [ ElementList [ "," ] ] "}" .
    func (p *parser) complitexpr() *CompositeLit {
    	if trace {
    		defer p.trace("complitexpr")()
    	}
    
    	x := new(CompositeLit)
    	x.pos = p.pos()
    
    	p.xnest++
    	p.want(_Lbrace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    		p.next()
    		x = &ast.KeyValueExpr{Key: x, Colon: colon, Value: p.parseValue()}
    	}
    
    	return x
    }
    
    func (p *parser) parseElementList() (list []ast.Expr) {
    	if p.trace {
    		defer un(trace(p, "ElementList"))
    	}
    
    	for p.tok != token.RBRACE && p.tok != token.EOF {
    		list = append(list, p.parseElement())
    		if !p.atComma("composite literal", token.RBRACE) {
    			break
    		}
    		p.next()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    <pre class="ebnf">
    CompositeLit  = LiteralType LiteralValue .
    LiteralType   = StructType | ArrayType | "[" "..." "]" ElementType |
                    SliceType | MapType | TypeName .
    LiteralValue  = "{" [ ElementList [ "," ] ] "}" .
    ElementList   = KeyedElement { "," KeyedElement } .
    KeyedElement  = [ Key ":" ] Element .
    Key           = FieldName | Expression | LiteralValue .
    FieldName     = identifier .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. doc/go_spec.html

    CompositeLit  = LiteralType LiteralValue .
    LiteralType   = StructType | ArrayType | "[" "..." "]" ElementType |
                    SliceType | MapType | TypeName [ TypeArgs ] .
    LiteralValue  = "{" [ ElementList [ "," ] ] "}" .
    ElementList   = KeyedElement { "," KeyedElement } .
    KeyedElement  = [ Key ":" ] Element .
    Key           = FieldName | Expression | LiteralValue .
    FieldName     = identifier .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top