mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
* Track seen module graphs so symbols from the same module aren't repeated Add test case * Track symbols instead of modules * Don't show duplicate symbols in spell checker Removes the declared location from the message. Since we don't show duplicates anymore it would be a bit misleading if we only show the location for the first declaration of the symbol
46 lines
862 B
Nim
46 lines
862 B
Nim
discard """
|
|
# pending bug #16521 (bug 12) use `matrix`
|
|
cmd: "nim c --spellsuggest:15 --hints:off $file"
|
|
action: "reject"
|
|
nimout: '''
|
|
tspellsuggest.nim(45, 13) Error: undeclared identifier: 'fooBar'
|
|
candidates (edit distance, scope distance); see '--spellSuggest':
|
|
(1, 0): 'fooBar8'
|
|
(1, 1): 'fooBar7'
|
|
(1, 3): 'fooBar1'
|
|
(1, 3): 'fooBar2'
|
|
(1, 3): 'fooBar3'
|
|
(1, 3): 'fooBar4'
|
|
(1, 3): 'fooBar5'
|
|
(1, 3): 'fooBar6'
|
|
(1, 5): 'FooBar'
|
|
(1, 5): 'fooBar4'
|
|
(1, 5): 'fooBar9'
|
|
(1, 5): 'fooCar'
|
|
(2, 5): 'FooCar'
|
|
(2, 5): 'GooBa'
|
|
(3, 0): 'fooBarBaz'
|
|
'''
|
|
"""
|
|
|
|
# tests `--spellsuggest:num`
|
|
|
|
|
|
|
|
# line 30
|
|
import ./mspellsuggest
|
|
|
|
var fooBar1 = 0
|
|
let fooBar2 = 0
|
|
const fooBar3 = 0
|
|
proc fooBar4() = discard
|
|
template fooBar5() = discard
|
|
macro fooBar6() = discard
|
|
|
|
proc main =
|
|
var fooBar7 = 0
|
|
block:
|
|
var fooBar8 = 0
|
|
const fooBarBaz = 0
|
|
let x = fooBar
|