You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/12/18 17:59:54 UTC

[couchdb-escodegen] reference refs/pull/307/head created (now 99ca565)

This is an automated email from the ASF dual-hosted git repository.

davisp pushed a change to reference refs/pull/307/head
in repository https://gitbox.apache.org/repos/asf/couchdb-escodegen.git.


      at 99ca565  Merge remote-tracking branch 'upstream/master'

This reference includes the following new commits:

     new 960138e  Bug generating RegExp code
     new 99ca565  Merge remote-tracking branch 'upstream/master'

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb-escodegen] 02/02: Merge remote-tracking branch 'upstream/master'

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

davisp pushed a commit to reference refs/pull/307/head
in repository https://gitbox.apache.org/repos/asf/couchdb-escodegen.git

commit 99ca5657bd6d6386c3ee9309046dbdd20a8c4803
Merge: 960138e ba4faab
Author: ffarzat <fa...@gmail.com>
AuthorDate: Tue Aug 9 07:36:27 2016 -0300

    Merge remote-tracking branch 'upstream/master'

 escodegen.js    | 21 ++++++++-----
 package.json    |  2 +-
 test/harmony.js | 97 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 111 insertions(+), 9 deletions(-)



[couchdb-escodegen] 01/02: Bug generating RegExp code

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

davisp pushed a commit to reference refs/pull/307/head
in repository https://gitbox.apache.org/repos/asf/couchdb-escodegen.git

commit 960138e334432951d761659c5fe9ccdaa136dbf1
Author: ffarzat <fa...@gmail.com>
AuthorDate: Sun May 15 23:00:05 2016 -0300

    Bug generating RegExp code
---
 escodegen.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/escodegen.js b/escodegen.js
index 0360521..e9555fd 100644
--- a/escodegen.js
+++ b/escodegen.js
@@ -2326,7 +2326,7 @@
                 return expr.value ? 'true' : 'false';
             }
 
-            return generateRegExp(expr.value);
+            return generateRegExp(expr.raw);
         },
 
         GeneratorExpression: function (expr, precedence, flags) {