Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for _GOTO (0.04 sec)

  1. src/cmd/compile/internal/syntax/tokens.go

    	_Continue    // continue
    	_Default     // default
    	_Defer       // defer
    	_Else        // else
    	_Fallthrough // fallthrough
    	_For         // for
    	_Func        // func
    	_Go          // go
    	_Goto        // goto
    	_If          // if
    	_Import      // import
    	_Interface   // interface
    	_Map         // map
    	_Package     // package
    	_Range       // range
    	_Return      // return
    	_Select      // select
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_Chan-24]
    	_ = x[_Const-25]
    	_ = x[_Continue-26]
    	_ = x[_Default-27]
    	_ = x[_Defer-28]
    	_ = x[_Else-29]
    	_ = x[_Fallthrough-30]
    	_ = x[_For-31]
    	_ = x[_Func-32]
    	_ = x[_Go-33]
    	_ = x[_Goto-34]
    	_ = x[_If-35]
    	_ = x[_Import-36]
    	_ = x[_Interface-37]
    	_ = x[_Map-38]
    	_ = x[_Package-39]
    	_ = x[_Range-40]
    	_ = x[_Return-41]
    	_ = x[_Select-42]
    	_ = x[_Struct-43]
    	_ = x[_Switch-44]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/syntax/parser.go

    		s.Tok = p.tok
    		p.next()
    		if p.tok == _Name {
    			s.Label = p.name()
    		}
    		return s
    
    	case _Go, _Defer:
    		return p.callStmt()
    
    	case _Goto:
    		s := new(BranchStmt)
    		s.pos = p.pos()
    		s.Tok = _Goto
    		p.next()
    		s.Label = p.name()
    		return s
    
    	case _Return:
    		s := new(ReturnStmt)
    		s.pos = p.pos()
    		p.next()
    		if p.tok != _Semi && p.tok != _Rbrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    _INSTANCEOF(OBJECT_ARRAY_TYPE);
                    _IFEQ(notArray);
    
                    // (Object[]) args
                    _ALOAD(2);
                    _CHECKCAST(OBJECT_ARRAY_TYPE);
                    _GOTO(end);
    
                    // new Object[] { args }
                    visitLabel(notArray);
                    _ICONST_1();
                    _ANEWARRAY(OBJECT_TYPE);
                    _DUP();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top