github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/src/runtime/trace/trace.go (about)

     1  // Stubs for the runtime/trace package
     2  package trace
     3  
     4  import (
     5  	"errors"
     6  	"io"
     7  )
     8  
     9  func Start(w io.Writer) error {
    10  	return errors.New("not implemented")
    11  }
    12  
    13  func Stop() {}