We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99ef4c7 + 338d383 commit fbae306Copy full SHA for fbae306
actions/ql/lib/codeql/actions/Ast.qll
@@ -50,8 +50,8 @@ class Expression extends AstNode instanceof ExpressionImpl {
50
string getNormalizedExpression() { result = normalizeExpr(expression) }
51
}
52
53
-/** A common class for `env` in workflow, job or step. */
54
-abstract class Env extends AstNode instanceof EnvImpl {
+/** An `env` in workflow, job or step. */
+class Env extends AstNode instanceof EnvImpl {
55
/** Gets an environment variable value given its name. */
56
ScalarValueImpl getEnvVarValue(string name) { result = super.getEnvVarValue(name) }
57
0 commit comments