More csv sinks and sources

This commit is contained in:
Tony Torralba
2021-05-03 12:44:53 +02:00
parent 53e04d0d96
commit 38e052482c
5 changed files with 54 additions and 114 deletions

View File

@@ -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

View File

@@ -0,0 +1,5 @@
package org.apache.commons.jexl2;
public class JexlArithmetic {
}

View File

@@ -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) {}
}

View File

@@ -0,0 +1,5 @@
package org.apache.commons.logging;
public interface Log {
}