(val)
| 5559 | }; |
| 5560 | |
| 5561 | var fmtGuid = function (val) { |
| 5562 | if (val == null) return null; |
| 5563 | if (!__isGuid(val)) { |
| 5564 | throwError("'%1' is not a valid guid", val); |
| 5565 | } |
| 5566 | return "guid'" + val + "'"; |
| 5567 | }; |
| 5568 | |
| 5569 | var fmtBoolean = function (val) { |
| 5570 | if (val == null) return null; |
nothing calls this directly
no test coverage detected