From 5ec59c3b3401ead97756744e97f2f7ec8310b211 Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Wed, 23 Apr 2025 15:26:51 +0100 Subject: [PATCH] PS: Get rid of unnecessary module. --- .../semmle/code/powershell/ast/internal/Raw/Scope.qll | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/powershell/ql/lib/semmle/code/powershell/ast/internal/Raw/Scope.qll b/powershell/ql/lib/semmle/code/powershell/ast/internal/Raw/Scope.qll index 836628a15fa..98d683d096d 100644 --- a/powershell/ql/lib/semmle/code/powershell/ast/internal/Raw/Scope.qll +++ b/powershell/ql/lib/semmle/code/powershell/ast/internal/Raw/Scope.qll @@ -9,16 +9,6 @@ Scope scopeOf(Ast n) { ) } -module Parameter { - abstract class Scope extends Ast { - abstract string getLowerCaseName(); - } - - private class ParameterScope extends Scope instanceof Parameter { - final override string getLowerCaseName() { result = Parameter.super.getLowerCaseName() } - } -} - abstract private class ScopeImpl extends Ast { abstract Scope getOuterScopeImpl();