From 7aa09c1b824c39bb23803856362877f5905efa91 Mon Sep 17 00:00:00 2001 From: Jeroen Engels Date: Mon, 19 Aug 2019 17:04:37 +0200 Subject: [PATCH] Handle GLSLExpression as a node that can't hold an expression A node of type GLSLExpression does not hold contain children expressions, contrary to what i understood before. This change should remove the confusion around that. --- src/Lint/Rule.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lint/Rule.elm b/src/Lint/Rule.elm index b337066a..52a7a3e8 100644 --- a/src/Lint/Rule.elm +++ b/src/Lint/Rule.elm @@ -1285,7 +1285,7 @@ expressionChildren node = RecordAccessFunction _ -> [] - GLSLExpression expr -> + GLSLExpression _ -> []