diff options
author | metagn <metagngn@gmail.com> | 2023-04-08 12:42:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-08 11:42:17 +0200 |
commit | 16bc546aea17921caee204bc55145717ab480dd6 (patch) | |
tree | f747899d591b80cfc7466f8e477b6194078006fc /compiler | |
parent | 686c75cef032481630e27dad3731df98e067b75e (diff) | |
download | Nim-16bc546aea17921caee204bc55145717ab480dd6.tar.gz |
remove useVersion (#21626)
test removing useVersion
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/commands.nim | 23 | ||||
-rw-r--r-- | compiler/options.nim | 3 | ||||
-rw-r--r-- | compiler/sempass2.nim | 2 | ||||
-rw-r--r-- | compiler/semtypes.nim | 9 | ||||
-rw-r--r-- | compiler/sigmatch.nim | 2 |
5 files changed, 6 insertions, 33 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim index 7c0f7ab0a..0c46a1bc0 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -1065,29 +1065,6 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo; of "expandarc": expectArg(conf, switch, arg, pass, info) conf.arcToExpand[arg] = "T" - of "useversion": - expectArg(conf, switch, arg, pass, info) - case arg - of "1.0": - defineSymbol(conf.symbols, "NimMajor", "1") - defineSymbol(conf.symbols, "NimMinor", "0") - # old behaviors go here: - defineSymbol(conf.symbols, "nimOldRelativePathBehavior") - undefSymbol(conf.symbols, "nimDoesntTrackDefects") - ast.eqTypeFlags.excl {tfGcSafe, tfNoSideEffect} - conf.globalOptions.incl optNimV1Emulation - of "1.2": - defineSymbol(conf.symbols, "NimMajor", "1") - defineSymbol(conf.symbols, "NimMinor", "2") - conf.globalOptions.incl optNimV12Emulation - of "1.6": - defineSymbol(conf.symbols, "NimMajor", "1") - defineSymbol(conf.symbols, "NimMinor", "6") - conf.globalOptions.incl optNimV16Emulation - else: - localError(conf, info, "unknown Nim version; currently supported values are: `1.0`, `1.2`") - # always be compatible with 1.x.100: - defineSymbol(conf.symbols, "NimPatch", "100") of "benchmarkvm": processOnOffSwitchG(conf, {optBenchmarkVM}, arg, pass, info) of "profilevm": diff --git a/compiler/options.nim b/compiler/options.nim index 51a8ff6f0..6df9723f2 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -102,9 +102,6 @@ type # please make sure we have under 32 options optBenchmarkVM # Enables cpuTime() in the VM optProduceAsm # produce assembler code optPanics # turn panics (sysFatal) into a process termination - optNimV1Emulation # emulate Nim v1.0 - optNimV12Emulation # emulate Nim v1.2 - optNimV16Emulation # emulate Nim v1.6 optSourcemap optProfileVM # enable VM profiler optEnableDeepCopy # ORC specific: enable 'deepcopy' for all types. diff --git a/compiler/sempass2.nim b/compiler/sempass2.nim index 396ea6606..f9d06f7a8 100644 --- a/compiler/sempass2.nim +++ b/compiler/sempass2.nim @@ -396,7 +396,7 @@ proc addRaiseEffect(a: PEffects, e, comesFrom: PNode) = if sameType(a.graph.excType(aa[i]), a.graph.excType(e)): return if e.typ != nil: - if optNimV1Emulation in a.config.globalOptions or not isDefectException(e.typ): + if not isDefectException(e.typ): throws(a.exc, e, comesFrom) proc addTag(a: PEffects, e, comesFrom: PNode) = diff --git a/compiler/semtypes.nim b/compiler/semtypes.nim index 28ebe2398..281862ffe 100644 --- a/compiler/semtypes.nim +++ b/compiler/semtypes.nim @@ -130,8 +130,8 @@ proc semEnum(c: PContext, n: PNode, prev: PType): PType = e.typ = result e.position = int(counter) let symNode = newSymNode(e) - if optNimV1Emulation notin c.config.globalOptions and identToReplace != nil and - c.config.cmd notin cmdDocLike: # A hack to produce documentation for enum fields. + if identToReplace != nil and c.config.cmd notin cmdDocLike: + # A hack to produce documentation for enum fields. identToReplace[] = symNode if e.position == 0: hasNull = true if result.sym != nil and sfExported in result.sym.flags: @@ -1398,8 +1398,7 @@ proc semProcTypeNode(c: PContext, n, genericParams: PNode, addParamOrResult(c, arg, kind) styleCheckDef(c, a[j].info, arg) onDef(a[j].info, arg) - if {optNimV1Emulation, optNimV12Emulation} * c.config.globalOptions == {}: - a[j] = newSymNode(arg) + a[j] = newSymNode(arg) var r: PType if n[0].kind != nkEmpty: @@ -1761,7 +1760,7 @@ proc semProcTypeWithScope(c: PContext, n: PNode, if n[1].kind != nkEmpty and n[1].len > 0: pragma(c, s, n[1], procTypePragmas) when useEffectSystem: setEffectsForProcType(c.graph, result, n[1]) - elif c.optionStack.len > 0 and optNimV1Emulation notin c.config.globalOptions: + elif c.optionStack.len > 0: # we construct a fake 'nkProcDef' for the 'mergePragmas' inside 'implicitPragmas'... s.ast = newTree(nkProcDef, newNodeI(nkEmpty, n.info), newNodeI(nkEmpty, n.info), newNodeI(nkEmpty, n.info), newNodeI(nkEmpty, n.info), newNodeI(nkEmpty, n.info)) diff --git a/compiler/sigmatch.nim b/compiler/sigmatch.nim index a1bd5f268..0c6456e68 100644 --- a/compiler/sigmatch.nim +++ b/compiler/sigmatch.nim @@ -1295,7 +1295,7 @@ proc typeRel(c: var TCandidate, f, aOrig: PType, of tyNil: result = isNone else: discard of tyOrdinal: - if isOrdinalType(a, allowEnumWithHoles = optNimV1Emulation in c.c.config.globalOptions): + if isOrdinalType(a): var x = if a.kind == tyOrdinal: a[0] else: a if f[0].kind == tyNone: result = isGeneric |