Fail quickly if re or nre module is attempted to be compiled with js [backport] (#14341)

Fixes https://github.com/nim-lang/Nim/issues/14338 .

(cherry picked from commit a2a3fa1039)
This commit is contained in:
Kaushal Modi
2020-05-14 01:27:57 -04:00
committed by narimiran
parent ff9d59747d
commit da7a6f4875
2 changed files with 6 additions and 1 deletions

View File

@@ -6,6 +6,9 @@
# distribution, for details about the copyright.
#
when defined(js):
{.error: "This library needs to be compiled with a c-like backend, and depends on PCRE.".}
## What is NRE?
## ============
##

View File

@@ -7,6 +7,9 @@
# distribution, for details about the copyright.
#
when defined(js):
{.error: "This library needs to be compiled with a c-like backend, and depends on PCRE.".}
## Regular expression support for Nim.
##
## This module is implemented by providing a wrapper around the
@@ -665,4 +668,3 @@ when isMainModule:
doAssert replace("bar", re"^", "foo") == "foobar"
doAssert replace("foo", re"", "-") == "-foo"
doAssert replace("foo", re"$", "bar") == "foobar"