Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _GOTO (0.03 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    			for _, spec := range d.Specs {
    				if spec, ok := spec.(*ast.ValueSpec); ok {
    					b.add(spec)
    				}
    			}
    		}
    
    	case *ast.LabeledStmt:
    		label = b.labeledBlock(s.Label, s)
    		b.jump(label._goto)
    		b.current = label._goto
    		_s = s.Stmt
    		goto start // effectively: tailcall stmt(g, s.Stmt, label)
    
    	case *ast.ReturnStmt:
    		b.add(s)
    		b.current = b.newBlock(KindUnreachable, s)
    
    	case *ast.BranchStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/branches.go

    						} else if ctxt.caseIndex+1 == len(t.Body) {
    							msg = "cannot fallthrough final case in switch"
    						} else {
    							break // fallthrough ok
    						}
    					}
    					ls.err(s.Pos(), msg)
    				case _Goto:
    					fallthrough // should always have a label
    				default:
    					panic("invalid BranchStmt")
    				}
    				break
    			}
    
    			// labeled branch statement
    			name := s.Label.Value
    			switch s.Tok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        public void _IFNULL(Label label) {
            super.visitJumpInsn(IFNULL, label);
        }
    
        public void _IFEQ(Label label) {
            super.visitJumpInsn(IFEQ, label);
        }
    
        public void _GOTO(Label label) {
            super.visitJumpInsn(GOTO, label);
        }
    
        public void _ARETURN() {
            super.visitInsn(ARETURN);
        }
    
        public void _IRETURN_OF(Type type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Default, "default", 0, 0},
    	{_Defer, "defer", 0, 0},
    	{_Else, "else", 0, 0},
    	{_Fallthrough, "fallthrough", 0, 0},
    	{_For, "for", 0, 0},
    	{_Func, "func", 0, 0},
    	{_Go, "go", 0, 0},
    	{_Goto, "goto", 0, 0},
    	{_If, "if", 0, 0},
    	{_Import, "import", 0, 0},
    	{_Interface, "interface", 0, 0},
    	{_Map, "map", 0, 0},
    	{_Package, "package", 0, 0},
    	{_Range, "range", 0, 0},
    	{_Return, "return", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
Back to top