Skip to content

Commit fbae306

Browse files
authored
Merge pull request #19675 from github/smowton/fix/abstract-env
Actions: Make `Env` non-abstract
2 parents 99ef4c7 + 338d383 commit fbae306

File tree

1 file changed

+2
-2
lines changed
  • actions/ql/lib/codeql/actions

1 file changed

+2
-2
lines changed

actions/ql/lib/codeql/actions/Ast.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ class Expression extends AstNode instanceof ExpressionImpl {
5050
string getNormalizedExpression() { result = normalizeExpr(expression) }
5151
}
5252

53-
/** A common class for `env` in workflow, job or step. */
54-
abstract class Env extends AstNode instanceof EnvImpl {
53+
/** An `env` in workflow, job or step. */
54+
class Env extends AstNode instanceof EnvImpl {
5555
/** Gets an environment variable value given its name. */
5656
ScalarValueImpl getEnvVarValue(string name) { result = super.getEnvVarValue(name) }
5757

0 commit comments

Comments
 (0)