Skip to content

Commit

Permalink
stylecheck usages part two: stdlib cleanup (#19338)
Browse files Browse the repository at this point in the history
* stylecheck usages part two: stdlib cleanup

typeinfo.nim: importCompilerProc => importcompilerproc

nre.nim: newLineFlags => newlineFlags

system.nim: JSRoot => JsRoot

ref #19319

* prefer importCompilerProc
  • Loading branch information
ringabout committed Jan 8, 2022
1 parent 58656aa commit ae92eac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compiler/wordrecg.nim
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type
wImmediate = "immediate", wConstructor = "constructor", wDestructor = "destructor",
wDelegator = "delegator", wOverride = "override", wImportCpp = "importcpp",
wCppNonPod = "cppNonPod",
wImportObjC = "importobjc", wImportCompilerProc = "importcompilerproc",
wImportObjC = "importobjc", wImportCompilerProc = "importCompilerProc",
wImportc = "importc", wImportJs = "importjs", wExportc = "exportc", wExportCpp = "exportcpp",
wExportNims = "exportnims",
wIncompleteStruct = "incompleteStruct", # deprecated
Expand Down
2 changes: 1 addition & 1 deletion lib/impure/nre.nim
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ proc matchesCrLf(pattern: Regex): bool =
let newlineFlags = flags and (pcre.NEWLINE_CRLF or
pcre.NEWLINE_ANY or
pcre.NEWLINE_ANYCRLF)
if newLineFlags > 0u32:
if newlineFlags > 0u32:
return true

# get flags from build config
Expand Down
2 changes: 1 addition & 1 deletion lib/pure/os.nim
Original file line number Diff line number Diff line change
Expand Up @@ -2888,7 +2888,7 @@ when defined(nimdoc):

elif defined(nimscript): discard
elif defined(nodejs):
type Argv = object of JSRoot
type Argv = object of JsRoot
let argv {.importjs: "process.argv".} : Argv
proc len(argv: Argv): int {.importjs: "#.length".}
proc `[]`(argv: Argv, i: int): cstring {.importjs: "#[#]".}
Expand Down

0 comments on commit ae92eac

Please sign in to comment.