diff options
author | flywind <xzsflywind@gmail.com> | 2022-01-09 04:34:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-08 21:34:22 +0100 |
commit | ae92eac06031ed57a755c01efdbb9cc5b72e5dbf (patch) | |
tree | 9cd352e89ad847b8382b301b61ead88414b346de /compiler | |
parent | 58656aa5bba572672f093499280b69bb0f0d4c06 (diff) | |
download | Nim-ae92eac06031ed57a755c01efdbb9cc5b72e5dbf.tar.gz |
stylecheck usages part two: stdlib cleanup (#19338)
* stylecheck usages part two: stdlib cleanup typeinfo.nim: importCompilerProc => importcompilerproc nre.nim: newLineFlags => newlineFlags system.nim: JSRoot => JsRoot ref #19319 * prefer importCompilerProc
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/wordrecg.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/wordrecg.nim b/compiler/wordrecg.nim index 22f6cc71d..c819f4306 100644 --- a/compiler/wordrecg.nim +++ b/compiler/wordrecg.nim @@ -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 |