summary refs log tree commit diff stats
path: root/tests/exception/tcontinuexc.nim
Commit message (Expand)AuthorAgeFilesLines
* new tester; all tests categorizedAraq2014-01-131-0/+30
ef='/ahoang/Nim/blame/tests/toptions.nim?h=devel&id=972c51086152bd45aef4eb17c099fa3472a19d04'>^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
















                                                                                
                  
type
  # please make sure we have under 32 options (improves code efficiency!)
  TOption = enum
    optNone, optForceFullMake, optBoehmGC, optRefcGC, optRangeCheck,
    optBoundsCheck, optOverflowCheck, optNilCheck, optAssert, optLineDir,
    optWarns, optHints, optDeadCodeElim, optListCmd, optCompileOnly,
    optSafeCode,             # only allow safe code
    optStyleCheck, optOptimizeSpeed, optOptimizeSize, optGenDynLib,
    optGenGuiApp, optStackTrace

  TOptionset = set[TOption]

var
  gOptions: TOptionset = {optRefcGC, optRangeCheck, optBoundsCheck,
    optOverflowCheck, optAssert, optWarns, optHints, optLineDir, optStackTrace}
  compilerArgs: int
  gExitcode: int8