(string1: Str, string2: Str)
| 271 | } |
| 272 | |
| 273 | static stringGe (string1: Str, string2: Str) { |
| 274 | if ((string1 === undefined) || (string2 === undefined)) { |
| 275 | return false; |
| 276 | } |
| 277 | return (new Precise (string1)).ge (new Precise (string2)); |
| 278 | } |
| 279 | |
| 280 | static stringLt (string1: Str, string2: Str) { |
| 281 | if ((string1 === undefined) || (string2 === undefined)) { |
no test coverage detected