mirror of https://github.com/tinygo-org/tinygo.git
Joe Shaw
2 years ago
committed by
Ron Evans
2 changed files with 26 additions and 2 deletions
@ -0,0 +1,13 @@ |
|||||
|
// Stubs for the runtime/trace package
|
||||
|
package trace |
||||
|
|
||||
|
import ( |
||||
|
"errors" |
||||
|
"io" |
||||
|
) |
||||
|
|
||||
|
func Start(w io.Writer) error { |
||||
|
return errors.New("not implemented") |
||||
|
} |
||||
|
|
||||
|
func Stop() {} |
Loading…
Reference in new issue