mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
102 lines
2.5 KiB
Java
Generated
102 lines
2.5 KiB
Java
Generated
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
|
|
* agreements. See the NOTICE file distributed with this work for additional information regarding
|
|
* copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License. You may obtain a
|
|
* copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
* or implied. See the License for the specific language governing permissions and limitations under
|
|
* the License.
|
|
*/
|
|
package groovy.lang;
|
|
|
|
import java.io.Reader;
|
|
import java.net.URI;
|
|
import java.util.*;
|
|
|
|
public class GroovyShell {
|
|
|
|
public GroovyShell() {}
|
|
|
|
public Object evaluate(GroovyCodeSource codeSource) {
|
|
return null;
|
|
}
|
|
|
|
public Object evaluate(Reader in) {
|
|
return null;
|
|
}
|
|
|
|
public Object evaluate(Reader in, String fileName) {
|
|
return null;
|
|
}
|
|
|
|
public Object evaluate(String scriptText) {
|
|
return null;
|
|
}
|
|
|
|
public Object evaluate(String scriptText, String fileName) {
|
|
return null;
|
|
}
|
|
|
|
public Object evaluate(String scriptText, final String fileName, final String codeBase) {
|
|
return null;
|
|
}
|
|
|
|
public Object run(String scriptText, String fileName, List<String> list) {
|
|
return null;
|
|
}
|
|
|
|
public Object run(String scriptText, String fileName, String[] args) {
|
|
return null;
|
|
}
|
|
|
|
|
|
public Object run(Reader in, String fileName, List<String> list) {
|
|
return null;
|
|
}
|
|
|
|
public Object run(Reader in, String fileName, String[] args) {
|
|
return null;
|
|
}
|
|
|
|
public Object run(GroovyCodeSource source, List<String> list) {
|
|
return null;
|
|
}
|
|
|
|
public Object run(GroovyCodeSource source, String[] args) {
|
|
return null;
|
|
}
|
|
|
|
public Object run(URI source, List<String> list) {
|
|
return null;
|
|
}
|
|
|
|
public Object run(URI source, String[] args) {
|
|
return null;
|
|
}
|
|
|
|
public Script parse(Reader in) {
|
|
return null;
|
|
}
|
|
|
|
public Script parse(Reader reader, String fileName) {
|
|
return null;
|
|
}
|
|
|
|
public Script parse(String scriptText) {
|
|
return null;
|
|
}
|
|
|
|
public Script parse(final String scriptText, final String fileName) {
|
|
return null;
|
|
}
|
|
|
|
public Script parse(URI uri) {
|
|
return null;
|
|
}
|
|
}
|