[FIX] strtabs interpolation in nimscript (#15172)

* [FIX] strtabs interpolation in nimscript

* [TEST] Use `static` in strtabs test
This commit is contained in:
haxscramper
2020-08-09 15:12:53 +03:00
committed by GitHub
parent 2a8bf470af
commit e5dbdc1d37
2 changed files with 6 additions and 1 deletions

View File

@@ -302,7 +302,7 @@ proc getValue(t: StringTableRef, flags: set[FormatFlag], key: string): string =
when defined(js) or defined(nimscript):
result = ""
else:
if useEnvironment in flags: result = os.getEnv(key).string
if useEnvironment in flags: result = getEnv(key).string
else: result = ""
if result.len == 0:
if useKey in flags: result = '$' & key

View File

@@ -0,0 +1,5 @@
import strtabs
static:
let t = {"name": "John", "city": "Monaco"}.newStringTable
doAssert "${name} lives in ${city}" % t == "John lives in Monaco"