mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-08 14:03:23 +00:00
23 lines
590 B
Nim
23 lines
590 B
Nim
discard """
|
|
action: reject
|
|
nimout: '''tusages.nim(20, 5) Error: 'BAD_STYLE' should be: 'BADSTYLE' [proc declared in tusages.nim(9, 6)]'''
|
|
matrix: "--styleCheck:error --styleCheck:usages --hint:all:off --hint:Name:on"
|
|
"""
|
|
|
|
import strutils
|
|
|
|
proc BADSTYLE(c: char) = discard
|
|
|
|
proc toSnakeCase(s: string): string =
|
|
result = newStringOfCap(s.len + 3)
|
|
for i in 0..<s.len:
|
|
if s[i] in {'A'..'Z'}:
|
|
if i > 0 and s[i-1] in {'a'..'z'}:
|
|
result.add '_'
|
|
result.add toLowerAscii(s[i])
|
|
else:
|
|
result.add s[i]
|
|
BAD_STYLE(s[i])
|
|
|
|
echo toSnakeCase("fooBarBaz Yes")
|