Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* fix nim-lang#15851

* {.cast(noSideEffect).}
  • Loading branch information
ringabout authored and PMunch committed Jan 6, 2021
1 parent d311133 commit 22603cc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
16 changes: 10 additions & 6 deletions lib/pure/httpcore.nim
Expand Up @@ -126,12 +126,14 @@ func newHttpHeaders*(keyValuePairs:
new result
result.table = newTable[string, seq[string]]()
result.isTitleCase = titleCase

for pair in keyValuePairs:
let key = result.toCaseInsensitive(pair.key)
if key in result.table:
result.table[key].add(pair.val)
else:
result.table[key] = @[pair.val]
{.cast(noSideEffect).}:
if key in result.table:
result.table[key].add(pair.val)
else:
result.table[key] = @[pair.val]


func `$`*(headers: HttpHeaders): string {.inline.} =
Expand All @@ -148,7 +150,8 @@ func `[]`*(headers: HttpHeaders, key: string): HttpHeaderValues =
##
## To access multiple values of a key, use the overloaded ``[]`` below or
## to get all of them access the ``table`` field directly.
return headers.table[headers.toCaseInsensitive(key)].HttpHeaderValues
{.cast(noSideEffect).}:
return headers.table[headers.toCaseInsensitive(key)].HttpHeaderValues

converter toString*(values: HttpHeaderValues): string =
return seq[string](values)[0]
Expand All @@ -157,7 +160,8 @@ func `[]`*(headers: HttpHeaders, key: string, i: int): string =
## Returns the ``i``'th value associated with the given key. If there are
## no values associated with the key or the ``i``'th value doesn't exist,
## an exception is raised.
return headers.table[headers.toCaseInsensitive(key)][i]
{.cast(noSideEffect).}:
return headers.table[headers.toCaseInsensitive(key)][i]

proc `[]=`*(headers: HttpHeaders, key, value: string) =
## Sets the header entries associated with ``key`` to the specified value.
Expand Down
2 changes: 1 addition & 1 deletion tests/effects/tstrict_funcs.nim
Expand Up @@ -2,7 +2,7 @@ discard """
cmd: "nim c --experimental:strictFuncs --experimental:views $file"
"""

import tables, streams, nre, parsecsv, uri
import tables, streams, nre, parsecsv, uri, httpcore

type
Contig2Reads = TableRef[string, seq[string]]
Expand Down

0 comments on commit 22603cc

Please sign in to comment.