Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _GOTO (0.08 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. 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)
  3. 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)
  4. 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