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
Currently, the ASTTranslator only tries to find actions in the auton function, ignoring any actions hidden away in calls to other functions
These function calls should also be searched to allow for modularization of code. For example:
voidturnTowardGoal() {
auton::turnTo(64,64,1500);
}
voidautons::shootIntoGoal() {
turnTowardGoal(); // look into this function and find turnTo()auton::shoot();
}
This may be difficult, especially if the "nested" function is defined in another file.
The text was updated successfully, but these errors were encountered:
Currently, the ASTTranslator only tries to find actions in the auton function, ignoring any actions hidden away in calls to other functions
These function calls should also be searched to allow for modularization of code. For example:
This may be difficult, especially if the "nested" function is defined in another file.
The text was updated successfully, but these errors were encountered: