NewNativeRun inits new NativeRun source.
(path string)
| 69 | |
| 70 | // NewNativeRun inits new NativeRun source. |
| 71 | func NewNativeRun(path string) *NativeRun { |
| 72 | return &NativeRun{ |
| 73 | OrigPath: path, |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | // Events rewrites package if needed, adding Go execution tracer |
| 78 | // to the main function, then builds and runs package using default Go |
no outgoing calls