Implement Serializable by recently introduced ImporterFunctions as this is required for scope serialization.

This commit is contained in:
igor%mir2.org 2003-04-29 13:56:57 +00:00
Родитель 507f6e1571
Коммит 341ffcaf63
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

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