mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
Add FIXME comments
This commit is contained in:
parent
b516bf0da8
commit
f06ed1a647
1 changed files with 5 additions and 0 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue