You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All for loops should be instrumented with calls to the control flow logger. Before entering a for loop a call to logger.setFalse("forID") should be called. Upon entering the loop a call to logger.setTrue("forID") should be called.
During the code injection phase of instrumentation, only variables collected by data flow from true marked for loops should be logged.
#Example
This example takes place in a file named source.go in the package main
#Overview
All for loops should be instrumented with calls to the control flow logger. Before entering a for loop a call to
logger.setFalse("forID")
should be called. Upon entering the loop a call tologger.setTrue("forID")
should be called.During the code injection phase of instrumentation, only variables collected by data flow from true marked for loops should be logged.
#Example
This example takes place in a file named
source.go
in the packagemain
#Pre Instrumentation
#Post Instrumentation
[Issue created by wantonsolutions: 2015-08-21]
The text was updated successfully, but these errors were encountered: