mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
Implement Serializable by recently introduced ImporterFunctions as this is required for scope serialization.
This commit is contained in:
parent
14d65688d3
commit
7ddf39b015
@ -38,6 +38,8 @@
|
||||
|
||||
package org.mozilla.javascript;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Class ImporterTopLevel
|
||||
*
|
||||
@ -175,7 +177,7 @@ public class ImporterTopLevel extends ScriptableObject {
|
||||
private ObjArray importedPackages = new ObjArray();
|
||||
}
|
||||
|
||||
final class ImporterFunctions implements IdFunctionMaster
|
||||
final class ImporterFunctions implements Serializable, IdFunctionMaster
|
||||
{
|
||||
ImporterFunctions(ImporterTopLevel importer)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user