Add FIXME comments

This commit is contained in:
Ayaz Hafiz 2022-08-01 09:08:19 -05:00
parent b516bf0da8
commit f06ed1a647
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -266,8 +266,13 @@ decodeDec = Decode.custom \bytes, @Json {} ->
Ok n -> {result: Ok n, rest}
Err _ -> {result: Err TooShort, rest}
# FIXME
decodeBool = Decode.custom \bytes, @Json {} -> {result: Err TooShort, rest: bytes}
# FIXME
decodeString = Decode.custom \bytes, @Json {} -> {result: Err TooShort, rest: bytes}
# FIXME
decodeList = \decodeElem -> Decode.custom \bytes, @Json {} ->
when Decode.decodeWith bytes decodeElem (@Json {}) is
_ -> {result: Err TooShort, rest: bytes}