-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 8452c7e
Showing
19 changed files
with
6,073 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
nimTitle balls balls.html module balls 0 | ||
nim checkpoint balls.html#checkpoint,varargs[string,] proc checkpoint(ss: varargs[string, `$`]) 162 | ||
nim report balls.html#report.m,varargs[typed] macro report(ss: varargs[typed]) 298 | ||
nim check balls.html#check.m,bool,string macro check(body: bool; message: string = "") 347 | ||
nim check balls.html#check.m,string,untyped macro check(message: string; body: untyped) 353 | ||
nim expect balls.html#expect.t,typed,untyped template expect(exception: typed; body: untyped) 501 | ||
nim skip balls.html#skip,string proc skip(msg = "skipped") 637 | ||
nim skip balls.html#skip.t,string,untyped template skip(msg = "skipped"; body: untyped) 641 | ||
nim fail balls.html#fail,string proc fail(msg = "failed") 648 | ||
nim suite balls.html#suite.m,string,untyped macro suite(name: string; tests: untyped) 786 | ||
nim test balls.html#test.m,string,untyped macro test(name: string; body: untyped) 848 | ||
nimgrp check balls.html#check-macros-all macro 347 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
nimTitle runner balls/runner.html module balls/runner 0 | ||
nim ballsFailFast balls/runner.html#ballsFailFast const ballsFailFast 25 | ||
nim c balls/runner.html#c Backend.c 29 | ||
nim cpp balls/runner.html#cpp Backend.cpp 29 | ||
nim js balls/runner.html#js Backend.js 29 | ||
nim e balls/runner.html#e Backend.e 29 | ||
nim Backend balls/runner.html#Backend enum Backend 29 | ||
nim debug balls/runner.html#debug Optimizer.debug 35 | ||
nim release balls/runner.html#release Optimizer.release 35 | ||
nim danger balls/runner.html#danger Optimizer.danger 35 | ||
nim Optimizer balls/runner.html#Optimizer enum Optimizer 35 | ||
nim refc balls/runner.html#refc MemModel.refc 40 | ||
nim markAndSweep balls/runner.html#markAndSweep MemModel.markAndSweep 40 | ||
nim arc balls/runner.html#arc MemModel.arc 40 | ||
nim orc balls/runner.html#orc MemModel.orc 40 | ||
nim vm balls/runner.html#vm MemModel.vm 40 | ||
nim MemModel balls/runner.html#MemModel enum MemModel 40 | ||
nim Execution balls/runner.html#Execution Analyzer.Execution 47 | ||
nim ASanitizer balls/runner.html#ASanitizer Analyzer.ASanitizer 47 | ||
nim TSanitizer balls/runner.html#TSanitizer Analyzer.TSanitizer 47 | ||
nim Valgrind balls/runner.html#Valgrind Analyzer.Valgrind 47 | ||
nim Helgrind balls/runner.html#Helgrind Analyzer.Helgrind 47 | ||
nim DataRacer balls/runner.html#DataRacer Analyzer.DataRacer 47 | ||
nim Analyzer balls/runner.html#Analyzer enum Analyzer 47 | ||
nim Matrix balls/runner.html#Matrix type Matrix 55 | ||
nim Profile balls/runner.html#Profile object Profile 58 | ||
nim hash balls/runner.html#hash,Profile proc hash(p: Profile): Hash 73 | ||
nim cmp balls/runner.html#cmp,Profile,Profile proc cmp(a, b: Profile): int 98 | ||
nim `<` balls/runner.html#<,Profile,Profile proc `<`(a, b: Profile): bool 106 | ||
nim `==` balls/runner.html#==,Profile,Profile proc `==`(a, b: Profile): bool 111 | ||
nim contains balls/runner.html#contains,Matrix,Profile proc contains(matrix: Matrix; p: Profile): bool 116 | ||
nim matrixTable balls/runner.html#matrixTable,Matrix proc matrixTable(matrix: Matrix): string 176 | ||
nim hints balls/runner.html#hints,Profile,bool proc hints(p: Profile; ci: bool): string 227 | ||
nim commandLine balls/runner.html#commandLine,Profile proc commandLine(p: Profile; withHints = false): string 431 | ||
nim perform balls/runner.html#perform,Profile proc perform(p: Profile): StatusKind 453 | ||
nim perform balls/runner.html#perform,Matrix,seq[Profile] proc perform(matrix: var Matrix; profs: seq[Profile]) 540 | ||
nim profiles balls/runner.html#profiles,string proc profiles(fn: string): seq[Profile] 602 | ||
nim ordered balls/runner.html#ordered,string proc ordered(directory: string; testsOnly = true): seq[string] 612 | ||
nim main balls/runner.html#main,string proc main(directory: string; fallback = false) 687 | ||
nimgrp perform balls/runner.html#perform-procs-all proc 453 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
nimTitle semaphores balls/semaphores.html module balls/semaphores 0 | ||
nim Semaphore balls/semaphores.html#Semaphore object Semaphore 5 | ||
nim hash balls/semaphores.html#hash,Semaphore proc hash(s: var Semaphore): Hash 10 | ||
nim initSemaphore balls/semaphores.html#initSemaphore,Semaphore,int proc initSemaphore(s: var Semaphore; count: int = 0) 14 | ||
nim `=destroy` balls/semaphores.html#=destroy,Semaphore proc `=destroy`(s: var Semaphore) 20 | ||
nim `=copy` balls/semaphores.html#=copy,Semaphore,Semaphore proc `=copy`(s: var Semaphore; e: Semaphore) 25 | ||
nim acquire balls/semaphores.html#acquire,Semaphore proc acquire(s: var Semaphore) 29 | ||
nim release balls/semaphores.html#release,Semaphore proc release(s: var Semaphore) 33 | ||
nim withLock balls/semaphores.html#withLock.t,Semaphore,untyped template withLock(s: var Semaphore; logic: untyped) 37 | ||
nim signal balls/semaphores.html#signal,Semaphore proc signal(s: var Semaphore) 45 | ||
nim wait balls/semaphores.html#wait,Semaphore proc wait(s: var Semaphore) 51 | ||
nim available balls/semaphores.html#available,Semaphore proc available(s: var Semaphore): int 62 | ||
nim isReady balls/semaphores.html#isReady.t,Semaphore template isReady(s: var Semaphore): untyped 67 | ||
nim inc balls/semaphores.html#inc,Semaphore proc inc(s: var Semaphore) 71 | ||
nim dec balls/semaphores.html#dec,Semaphore proc dec(s: var Semaphore) 76 | ||
nim withSemaphore balls/semaphores.html#withSemaphore.t,Semaphore,typed template withSemaphore(s: var Semaphore; logic: typed): untyped 81 |
Oops, something went wrong.