Files
Nim/tests/vm/textensionmap.nim
Miran e7f280bd26 Remove deprecated stuff from stdlib (#14699)
* update to the latest Jester

* remove deprecated procs from some stdlib modules

* 'criterion' is not maintained anymore and relies on obsolete stuff
2020-06-17 15:25:02 +02:00

14 lines
185 B
Nim

# bug #5237
import tables
import sets
import sequtils
const EXTENSIONMAP = {
"c": @["*.c", "*.h"],
}.toTable()
const EXTENSIONS = toHashSet(concat(toSeq(EXTENSIONMAP.values())))