--------------------------------------------------------------
| 1044 | |
| 1045 | // -------------------------------------------------------------- |
| 1046 | static eVariableScope |
| 1047 | VariableCreationProbability(void) |
| 1048 | { |
| 1049 | bool flag = CGOptions::global_variables() && rnd_flipcoin(10); |
| 1050 | ERROR_GUARD(MAX_VAR_SCOPE); |
| 1051 | if (flag) // 10% chance to create new global var |
| 1052 | return eGlobal; |
| 1053 | else |
| 1054 | return eParentLocal; |
| 1055 | } |
| 1056 | |
| 1057 | // -------------------------------------------------------------- |
| 1058 | Variable * |
no test coverage detected