summary refs log blame commit diff stats
path: root/tests/vm/textensionmap.nim
blob: 5d4b25d01304d90206ce36610d4c4b190d8b412d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                              
# bug #5237

import tables
import sets
import sequtils


const EXTENSIONMAP = {
  "c": @["*.c", "*.h"],
}.toTable()

const EXTENSIONS = toSet(concat(toSeq(EXTENSIONMAP.values())))