Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for reporter (1.44 sec)

  1. ChangeLog.md

    - [`KT-55335`](https://youtrack.jetbrains.com/issue/KT-55335) Don't report SUPERTYPE_NOT_INITIALIZED for annotation supertype, because FINAL_SUPERTYPE is already reported
    - [`KT-27936`](https://youtrack.jetbrains.com/issue/KT-27936) Write InnerClasses attribute for all class names used in a class file
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	}
    }
    
    func (e *ssafn) Log() bool {
    	return e.log
    }
    
    // Fatalf reports a compiler error and exits.
    func (e *ssafn) Fatalf(pos src.XPos, msg string, args ...interface{}) {
    	base.Pos = pos
    	nargs := append([]interface{}{ir.FuncName(e.curfn)}, args...)
    	base.Fatalf("'%s': "+msg, nargs...)
    }
    
    // Warnl reports a "warning", which is usually flag-triggered
    // logging output for the benefit of tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. doc/go_spec.html

    Next, any deferred functions run by <code>F</code>'s caller are run,
    and so on up to any deferred by the top-level function in the executing goroutine.
    At that point, the program is terminated and the error
    condition is reported, including the value of the argument to <code>panic</code>.
    This termination sequence is called <i>panicking</i>.
    </p>
    
    <pre>
    panic(42)
    panic("unreachable")
    panic(Error("cannot parse"))
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top