Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for parenthesized (0.26 sec)

  1. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/redundantLabelParens.txt

    expression: PARENTHESIZED
    text: (4)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 62 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/arrayAccessModificationComputedReceiverReceiver.txt

    expression: PARENTHESIZED
    text: (a + a)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 65 bytes
    - Viewed (0)
  3. test/fixedbugs/issue13261.go

    // compile
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Taking the address of a parenthesized composite literal is permitted.
    
    package main
    
    type T struct{}
    
    func main() {
    	_ = &T{}
    	_ = &(T{})
    	_ = &((T{}))
    
    	_ = &struct{}{}
    	_ = &(struct{}{})
    	_ = &((struct{}{}))
    
    	switch (&T{}) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 520 bytes
    - Viewed (0)
  4. src/go/doc/testdata/a.1.golden

    	- note 1 continues on this 2nd line
    	- note 1 continues on this 3rd line
    
    NOTE(foo)	2 of 4
    
    NOTE(bar)	3 of 4
    
    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    	 must appear in its entirety.
    
    NOTE(xxx)	The ':' after the marker and uid is optional.
    
    
    SECBUGS
    SECBUG(uid)	sec hole 0
    	need to fix asap
    
    
    TODOS
    TODO(uid)	todo0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  5. test/parentype.go

    // compile
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that types can be parenthesized.
    
    package main
    
    func f(interface{})
    func g() {}
    func main() {
    	f(map[string]string{"a":"b","c":"d"})
    	f([...]int{1,2,3})
    	f(map[string]func(){"a":g,"c":g})
    	f(make(chan(<-chan int)))
    	f(make(chan<-(chan int)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 23:30:39 UTC 2012
    - 424 bytes
    - Viewed (0)
  6. src/go/doc/testdata/a.0.golden

    	- note 1 continues on this 2nd line
    	- note 1 continues on this 3rd line
    
    NOTE(foo)	2 of 4
    
    NOTE(bar)	3 of 4
    
    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    	 must appear in its entirety.
    
    NOTE(xxx)	The ':' after the marker and uid is optional.
    
    
    SECBUGS
    SECBUG(uid)	sec hole 0
    	need to fix asap
    
    
    TODOS
    TODO(uid)	todo0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  7. src/go/doc/testdata/a.2.golden

    	- note 1 continues on this 2nd line
    	- note 1 continues on this 3rd line
    
    NOTE(foo)	2 of 4
    
    NOTE(bar)	3 of 4
    
    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    	 must appear in its entirety.
    
    NOTE(xxx)	The ':' after the marker and uid is optional.
    
    
    SECBUGS
    SECBUG(uid)	sec hole 0
    	need to fix asap
    
    
    TODOS
    TODO(uid)	todo0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                PREFIX_EXPRESSION -> tree.unsupported(node, UnsupportedLanguageFeature.PrefixExpression)
                OPERATION_REFERENCE -> tree.unsupported(node, UnsupportedLanguageFeature.UnsupportedOperator)
                PARENTHESIZED -> parenthesized(tree, node)
                LAMBDA_EXPRESSION -> tree.unsupported(node, UnsupportedLanguageFeature.FunctionDeclaration)
                THIS_EXPRESSION -> Element(This(tree.sourceData(node)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/rewrite4.input

    //gofmt -r=(x)->x
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Rewriting of parenthesized expressions (x) -> x
    // must not drop parentheses if that would lead to
    // wrong association of the operands.
    // Was issue 1847.
    
    package main
    
    // From example 1 of issue 1847.
    func _() {
    	var t = (&T{1000}).Id()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/rewrite4.golden

    //gofmt -r=(x)->x
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Rewriting of parenthesized expressions (x) -> x
    // must not drop parentheses if that would lead to
    // wrong association of the operands.
    // Was issue 1847.
    
    package main
    
    // From example 1 of issue 1847.
    func _() {
    	var t = (&T{1000}).Id()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 1K bytes
    - Viewed (0)
Back to top