Helper function used to convert a token to an Array object.
| 154 | |
| 155 | // Helper function used to convert a token to an Array object. |
| 156 | static Array* TokenToArray(ExprTokenType &token) |
| 157 | { |
| 158 | return dynamic_cast<Array *>(TokenToObject(token)); |
| 159 | } |
| 160 | |
| 161 | |
| 162 | // Enumerator for GuiType objects. |
no test coverage detected