add package uploading

This commit is contained in:
2025-01-24 02:45:26 +02:00
parent 1e982cd2ef
commit 6125772038
9 changed files with 39 additions and 10 deletions

View File

@@ -31,8 +31,6 @@ public interface DebugHandler {
* Called when a script has been loaded
* @param filename The name of the source
* @param source The name of the source
* @param breakpoints A set of all the breakpointable locations in this source
* @param map The source map associated with this file. null if this source map isn't mapped
*/
public void onSourceLoad(Filename filename, String source);

View File

@@ -429,7 +429,6 @@ public abstract class Value {
}
}
/** @internal */
public List<String> toReadableLines(Environment env, HashSet<ObjectValue> passed) {
return Arrays.asList(toString(env));
}