From 9ba5b2f92d05738c6ad55dd2c425650f47f560e2 Mon Sep 17 00:00:00 2001 From: Joshua Tenner Date: Fri, 21 Feb 2020 13:39:10 -0500 Subject: [PATCH] remove unused parameter to prevent unusedParameters in generated output --- builtin/whitespace.ne | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/whitespace.ne b/builtin/whitespace.ne index 00dc315c..9a6ca1c6 100644 --- a/builtin/whitespace.ne +++ b/builtin/whitespace.ne @@ -1,5 +1,5 @@ # Whitespace: `_` is optional, `__` is mandatory. -_ -> wschar:* {% function(d) {return null;} %} -__ -> wschar:+ {% function(d) {return null;} %} +_ -> wschar:* {% function() {return null;} %} +__ -> wschar:+ {% function() {return null;} %} wschar -> [ \t\n\v\f] {% id %}