mirror of
https://github.com/github/codeql.git
synced 2026-05-05 05:35:13 +02:00
More csv sinks and sources
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
//semmle-extractor-options: --javac-args -cp ${testdir}/../../../../stubs/springframework-5.2.3:${testdir}/../../../../stubs/mvel2-2.4.7:${testdir}/../../../../stubs/jsr223-api:${testdir}/../../../../stubs/apache-commons-jexl-2.1.1:${testdir}/../../../../stubs/apache-commons-jexl-3.1:${testdir}/../../../../stubs/scriptengine:${testdir}/../../../../stubs/java-ee-el:${testdir}/../../../../stubs/juel-2.2:${testdir}/../../../stubs/groovy-all-3.0.7:${testdir}/../../../../stubs/servlet-api-2.4
|
||||
//semmle-extractor-options: --javac-args -cp ${testdir}/../../../../stubs/springframework-5.2.3:${testdir}/../../../../stubs/mvel2-2.4.7:${testdir}/../../../../stubs/jsr223-api:${testdir}/../../../../stubs/apache-commons-jexl-2.1.1:${testdir}/../../../../stubs/apache-commons-jexl-3.1:${testdir}/../../../../stubs/scriptengine:${testdir}/../../../../stubs/java-ee-el:${testdir}/../../../../stubs/juel-2.2:${testdir}/../../../stubs/groovy-all-3.0.7:${testdir}/../../../../stubs/servlet-api-2.4:${testdir}/../../../../stubs/apache-commons-logging-1.2
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.apache.commons.jexl2;
|
||||
|
||||
public class JexlArithmetic {
|
||||
|
||||
}
|
||||
@@ -2,12 +2,15 @@ package org.apache.commons.jexl2;
|
||||
|
||||
import java.util.Map;
|
||||
import org.apache.commons.jexl2.introspection.*;
|
||||
import org.apache.commons.logging.Log;
|
||||
|
||||
public class JexlEngine {
|
||||
|
||||
public JexlEngine() {}
|
||||
public JexlEngine() {
|
||||
}
|
||||
|
||||
public JexlEngine(Uberspect uberspect, Object arithmetic, Map<String, Object> functions, Object log) {}
|
||||
public JexlEngine(Uberspect uberspect, JexlArithmetic arithmetic, Map<String, Object> functions, Log log) {
|
||||
}
|
||||
|
||||
public Expression createExpression(String expression) {
|
||||
return null;
|
||||
@@ -41,9 +44,10 @@ public class JexlEngine {
|
||||
return null;
|
||||
}
|
||||
|
||||
public void setProperty(Object bean, String expr, Object value) {}
|
||||
public void setProperty(Object bean, String expr, Object value) {
|
||||
}
|
||||
|
||||
public void setProperty(JexlContext context, Object bean, String expr, Object value) {
|
||||
}
|
||||
|
||||
public void setProperty(JexlContext context, Object bean, String expr, Object value) {}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.apache.commons.logging;
|
||||
|
||||
public interface Log {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user