Resets temp variables @param deep True to clear all imported functions and variables, False otherwise
(boolean deep)
| 858 | * @param deep True to clear all imported functions and variables, False otherwise |
| 859 | */ |
| 860 | public void reset(boolean deep) { |
| 861 | if (deep) { |
| 862 | variables.clear(); |
| 863 | functions.clear(); |
| 864 | } |
| 865 | innerVariables.clear(); |
| 866 | tmpGenerator.set(0); |
| 867 | } |
| 868 | |
| 869 | /** |
| 870 | * @see #operations |
nothing calls this directly
no outgoing calls
no test coverage detected