Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for returnsInt (0.37 sec)

  1. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

          return new GoodEquals(a, b);
        }
    
        // instance method ignored
        public Object badIgnored() {
          return new BadEquals();
        }
    
        // primitive ignored
        public int returnsInt() {
          throw new UnsupportedOperationException();
        }
    
        // void ignored
        public void voidMethod() {
          throw new UnsupportedOperationException();
        }
    
        // non-public method ignored
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // Lambdas do not use their expression-blocks if they are inferred
                // to be of unit type
                is KtFunctionLiteral ->
                    parent.bodyBlockExpression == child && !returnsUnit(parent)
    
                /** See [doesNamedFunctionUseBody] */
                is KtNamedFunction ->
                    doesNamedFunctionUseBody(parent, child)
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Feb 12 20:38:23 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/ast.go

    			f.walk(n.Rhs, ctxAssign2, visit)
    		} else {
    			f.walk(n.Rhs, ctxExpr, visit)
    		}
    	case *ast.GoStmt:
    		f.walk(n.Call, ctxExpr, visit)
    	case *ast.DeferStmt:
    		f.walk(n.Call, ctxDefer, visit)
    	case *ast.ReturnStmt:
    		f.walk(n.Results, ctxExpr, visit)
    	case *ast.BranchStmt:
    	case *ast.BlockStmt:
    		f.walk(n.List, context, visit)
    	case *ast.IfStmt:
    		f.walk(n.Init, ctxStmt, visit)
    		f.walk(&n.Cond, ctxExpr, visit)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </p>
    
    <h2 id="Statements">Statements</h2>
    
    <p>
    Statements control execution.
    </p>
    
    <pre class="ebnf">
    Statement =
    	Declaration | LabeledStmt | SimpleStmt |
    	GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
    	FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
    	DeferStmt .
    
    SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt | Assignment | ShortVarDecl .
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    </p>
    
    <h2 id="Statements">Statements</h2>
    
    <p>
    Statements control execution.
    </p>
    
    <pre class="ebnf">
    Statement =
    	Declaration | LabeledStmt | SimpleStmt |
    	GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
    	FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
    	DeferStmt .
    
    SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt | Assignment | ShortVarDecl .
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg go/ast, type RangeStmt struct, TokPos token.Pos
    pkg go/ast, type RangeStmt struct, Value Expr
    pkg go/ast, type RangeStmt struct, X Expr
    pkg go/ast, type ReturnStmt struct
    pkg go/ast, type ReturnStmt struct, Results []Expr
    pkg go/ast, type ReturnStmt struct, Return token.Pos
    pkg go/ast, type Scope struct
    pkg go/ast, type Scope struct, Objects map[string]*Object
    pkg go/ast, type Scope struct, Outer *Scope
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top