From a5ffe2c23fdfaf13f3466a01d9dd9d590c5e8672 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Sat, 15 Jul 2017 15:16:11 +0800 Subject: drop `unused` builtin globals under `unsafe` (#2236) fixes #2233 --- lib/scope.js | 8 -------- 1 file changed, 8 deletions(-) (limited to 'lib/scope.js') diff --git a/lib/scope.js b/lib/scope.js index f8ecedb5..df7b2076 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -373,14 +373,6 @@ AST_Symbol.DEFMETHOD("unreferenced", function(){ && !(this.scope.uses_eval || this.scope.uses_with); }); -AST_Symbol.DEFMETHOD("undeclared", function(){ - return this.definition().undeclared; -}); - -AST_LabelRef.DEFMETHOD("undeclared", return_false); - -AST_Label.DEFMETHOD("undeclared", return_false); - AST_Symbol.DEFMETHOD("definition", function(){ return this.thedef; }); -- cgit v1.2.3 ' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/databases.scm
AgeCommit message (Expand)Author
2021-04-13tests: postgresql: Fix it....This is a follow-up of c311147bd16aa0e5746d9cbf31502f5fd61e470c. * gnu/tests/databases.scm (run-postgresql-test): Use "/tmp" as database host. Mathieu Othacehe
2021-03-16gnu: Remove MongoDB....mongodb 3.4.10 has unpatched CVEs and mongodb 3.4.24 has some files in the release tarball under the SSPL, therefore we cannot provide mongodb while upholding to good security standards. It turns out feff80cec3c97a3df2c20d300be12d67f79d4f22 was right since while the main license file wasnt altered to SSPL, some files in the tree contain SSPL headers. * gnu/packages/databases.scm (go-gopkg.in-mgo.v2): Remove. * gnu/packages/databases.scm (mongo-tools): Remove. * doc/guix.texi (mongodb-service-type): Remove. * gnu/tests/databases.scm (%test-mongodb, %mongodb-os, run-mongodb-test): Remove. * gnu/services/databases.scm (mongodb-configuration, mongodb-configuration?, mongodb-configuration-mongodb, mongodb-configuration-config-file, mongodb-configuration-data-directory, mongodb-service-type, %default-mongodb-configuration-file, %mongodb-accounts, mongodb-activation, mongodb-shepherd-service): Remove. * gnu/packages/databases.scm (mongodb): Remove. Léo Le Bouter