Skip to content

Commit

Permalink
Merge pull request #107 from nim-lang/devel
Browse files Browse the repository at this point in the history
fix nim-lang#13218: avoid some irrelevant warnings for nim doc,rst2html,--app…
  • Loading branch information
sthagen authored Mar 13, 2020
2 parents e902629 + 6e0c06f commit 6103b76
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 12 deletions.
7 changes: 7 additions & 0 deletions compiler/main.nim
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,12 @@ proc mainCommand*(graph: ModuleGraph) =
loadConfigs(DocConfig, cache, conf)
commandDoc(cache, conf)
of "doc2", "doc":
conf.setNoteDefaults(warnLockLevel, false) # issue #13218
conf.setNoteDefaults(warnRedefinitionOfLabel, false) # issue #13218
# because currently generates lots of false positives due to conflation
# of labels links in doc comments, eg for random.rand:
# ## * `rand proc<#rand,Rand,Natural>`_ that returns an integer
# ## * `rand proc<#rand,Rand,range[]>`_ that returns a float
when defined(leanCompiler):
quit "compiler wasn't built with documentation generator"
else:
Expand All @@ -233,6 +239,7 @@ proc mainCommand*(graph: ModuleGraph) =
defineSymbol(conf.symbols, "nimdoc")
commandDoc2(graph, false)
of "rst2html":
conf.setNoteDefaults(warnRedefinitionOfLabel, false) # similar to issue #13218
when defined(leanCompiler):
quit "compiler wasn't built with documentation generator"
else:
Expand Down
8 changes: 8 additions & 0 deletions compiler/options.nim
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,15 @@ type
severity: Severity) {.closure, gcsafe.}
cppCustomNamespace*: string

proc setNoteDefaults*(conf: ConfigRef, note: TNoteKind, enabled = true) =
template fun(op) =
conf.notes.op note
conf.mainPackageNotes.op note
conf.foreignPackageNotes.op note
if enabled: fun(incl) else: fun(excl)

proc setNote*(conf: ConfigRef, note: TNoteKind, enabled = true) =
# see also `prepareConfigNotes` which sets notes
if note notin conf.cmdlineNotes:
if enabled: incl(conf.notes, note) else: excl(conf.notes, note)

Expand Down
4 changes: 2 additions & 2 deletions doc/docgen_sample.nim
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import strutils

proc helloWorld*(times: int) =
## Takes an integer and outputs
## as many "hello world!"s
## as many indented "hello world!"s

for i in 0 .. times-1:
echo "hello world!"
echo "hello world!".indent(2) # using indent to avoid `UnusedImport`

helloWorld(5)
2 changes: 1 addition & 1 deletion lib/impure/rdstdin.nim
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ elif defined(genode):
stdin.readLine(line)

else:
import linenoise, termios
import linenoise

proc readLineFromStdin*(prompt: string): TaintedString {.
tags: [ReadIOEffect, WriteIOEffect].} =
Expand Down
2 changes: 1 addition & 1 deletion lib/pure/asyncdispatch.nim
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@

include "system/inclrtl"

import os, tables, strutils, times, heapqueue, lists, options, asyncstreams
import os, tables, strutils, times, heapqueue, options, asyncstreams
import options, math, std/monotimes
import asyncfutures except callSoon

Expand Down
2 changes: 1 addition & 1 deletion lib/pure/asynchttpserver.nim
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
##
## waitFor server.serve(Port(8080), cb)

import tables, asyncnet, asyncdispatch, parseutils, uri, strutils
import asyncnet, asyncdispatch, parseutils, uri, strutils
import httpcore

export httpcore except parseHeader
Expand Down
3 changes: 2 additions & 1 deletion lib/pure/encodings.nim
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
## Converts between different character encodings. On UNIX, this uses
## the `iconv`:idx: library, on Windows the Windows API.

import os, parseutils, strutils
import os

when not defined(windows):
type
Expand All @@ -28,6 +28,7 @@ type
## for encoding errors

when defined(windows):
import parseutils, strutils
proc eqEncodingNames(a, b: string): bool =
var i = 0
var j = 0
Expand Down
2 changes: 0 additions & 2 deletions lib/pure/lenientops.nim
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
## either casting to float or rounding to int might be preferred, and users
## should make an explicit choice.

import typetraits

proc `+`*[I: SomeInteger, F: SomeFloat](i: I, f: F): F {.noSideEffect, inline.} =
F(i) + f
proc `+`*[I: SomeInteger, F: SomeFloat](f: F, i: I): F {.noSideEffect, inline.} =
Expand Down
3 changes: 2 additions & 1 deletion lib/pure/selectors.nim
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
##
## TODO: ``/dev/poll``, ``event ports`` and filesystem events.

import os, strutils, nativesockets
import os, nativesockets

const hasThreadSupport = compileOption("threads") and defined(threadsafe)

Expand Down Expand Up @@ -230,6 +230,7 @@ when defined(nimdoc):
## For *poll* and *select* selectors ``-1`` is returned.

else:
import strutils
when hasThreadSupport:
import locks

Expand Down
2 changes: 0 additions & 2 deletions lib/pure/strformat.nim
Original file line number Diff line number Diff line change
Expand Up @@ -744,8 +744,6 @@ when isMainModule:
check &"{high(int64)}", "9223372036854775807"
check &"{low(int64)}", "-9223372036854775808"

import json

doAssert fmt"{'a'} {'b'}" == "a b"

echo("All tests ok")
4 changes: 3 additions & 1 deletion tools/kochdocs.nim
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,10 @@ lib/posix/linux.nim
lib/posix/termios.nim
lib/js/jscore.nim
""".splitWhitespace()


# some of these are include files so shouldn't be docgen'd
ignoredModules = """
lib/prelude.nim
lib/pure/future.nim
lib/impure/osinfo_posix.nim
lib/impure/osinfo_win.nim
Expand Down

0 comments on commit 6103b76

Please sign in to comment.