mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 18:47:47 +00:00
720a54a0fe
* stdlib: extend stdlib to allow import of more packages
9 lines
118 B
Go
9 lines
118 B
Go
package runtime
|
|
|
|
// The Error interface identifies a run time error.
|
|
type Error interface {
|
|
error
|
|
|
|
RuntimeError()
|
|
}
|