Helper method to detect if a token is a DFOR or FOR token @param tokenString token to check @return true if it is a DFOR or FOR token
(String tokenString)
| 1732 | * @return true if it is a DFOR or FOR token |
| 1733 | */ |
| 1734 | private boolean isForOrDForToken(String tokenString) |
| 1735 | { |
| 1736 | return tokenString.startsWith("FOR.") || tokenString.startsWith("DFOR."); |
| 1737 | } |
| 1738 | |
| 1739 | /** |
| 1740 | * Helper method to determine if a string contains a mathematical token |